@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。
------------------------------------------------------------ */
:root {
  --rail-w: 7px;
  --tie-w: 3px;
  --dash: 120px;
  --gap: 80px;
  --rail-color: #f4f1eb;
  --tie-color: #fff;
  --rail-color-inv: #fff;
  --tie-color-inv: #f4f1eb;
}

.c-background-line {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--tie-w);
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}
@media only screen and (max-width: 768px) {
  .c-background-line {
    left: 5%;
  }
}

.c-background-line.is-visible {
  opacity: 1;
}

.c-background-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--rail-w);
  transform: translateX(-50%);
  background: var(--rail-color);
}

.c-background-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(to bottom, var(--tie-color) 0, var(--tie-color) var(--dash), transparent var(--dash), transparent calc(var(--dash) + var(--gap)));
  background-repeat: repeat-y;
  background-size: 100% calc(var(--dash) + var(--gap));
  background-position-y: var(--line-offset, 0);
  will-change: background-position;
}

@media (prefers-reduced-motion: reduce) {
  .c-background-line {
    transition: none;
  }
}
/* ============================================================
   駅別特集【新宿〜立川間】 — self-contained section styles
   ============================================================ */
:root {
  --ink: #1e1d1b;
  --ink-soft: #4a4742;
  --ink-lo: #6f6b64;
  --ink-xlo: #a6a099;
  --paper: #faf8f4;
  --paper-2: #f2ede4;
  --line: #e4ded3;
  --line-lo: #efe9df;
  --burgundy-dk: #6a0f1a;
  --navy: #1a2744;
  --teal-bg: #e8f4ee;
  --teal-dk: #0f6e56;
  --plum: #534ab7;
  --plum-bg: #efedfb;
  --amber: #b07a1e;
  --amber-bg: #f7efdd;
  --amber-dk: #6a4708;
  --red-bg: #fcebeb;
  --shadow-sm: 0 1px 3px rgba(30,25,20,.06), 0 4px 14px rgba(30,25,20,.05);
  --shadow-md: 0 8px 30px rgba(30,25,20,.11), 0 2px 8px rgba(30,25,20,.06);
  --serif: "Shippori Mincho","Hiragino Mincho ProN","Yu Mincho",serif;
  --sans: "Noto Sans JP",-apple-system,"Hiragino Kaku Gothic ProN",sans-serif;
  --maxw: 1120px;
  --nav-h: 0px;
}

i {
  display: inline-block;
}

/* reveal-on-scroll (base state is VISIBLE so content can never be trapped) */
.reveal {
  opacity: 1;
}
.reveal.in {
  animation: rin 0.9s cubic-bezier(0.16, 0.7, 0.3, 1) both;
}

@keyframes rin {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes markPulse {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.8);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
/* section shell */
.section {
  padding: 100px 42px;
}
.section.alt {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-top: 1px solid var(--line-lo);
  border-bottom: 1px solid var(--line-lo);
}
@media only screen and (max-width: 768px) {
  .section {
    padding: 6rem 1rem;
  }
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ── split: sticky rail (left) + scrolling station cards (right) ── */
.rail-split {
  position: relative;
  display: grid;
  grid-template-columns: 40rem 1fr;
  gap: 4rem;
  align-items: start;
}
@media only screen and (max-width: 768px) {
  .rail-split {
    display: block;
  }
}

.rail-sticky {
  position: sticky;
  top: 92px;
}
@media only screen and (max-width: 768px) {
  .rail-sticky {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .rail-sticky.is-in-view {
    opacity: 1;
    pointer-events: auto;
  }
}

.rail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  padding: 0 0 2.6rem;
  box-shadow: var(--shadow-sm);
}
@media only screen and (max-width: 768px) {
  .rail-card {
    width: 100%;
    border-left: 0;
    border-right: 0;
    padding: 0.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(30, 25, 20, 0.25);
  }
}

.rail-title {
  letter-spacing: 0.2em;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  padding-block: 0.5em;
  background: #152d42;
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .rail-title {
    width: 100%;
    margin: 0 0 1px;
    font-size: 1.3rem;
    padding-block: 0em;
    letter-spacing: 0.14em;
  }
}

.rail-ep {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 700;
}
.rail-ep ~ .rail-ep {
  margin-top: 6px;
}
.rail-ep span {
  font-size: 10px;
  color: var(--ink-xlo);
  font-weight: 400;
  margin-left: 5px;
}
@media only screen and (max-width: 768px) {
  .rail-ep {
    font-size: 10px;
    line-height: 11px;
    white-space: nowrap;
    align-self: flex-start;
    padding-top: 1px;
  }
  .rail-ep span {
    display: none;
  }
}

.rail-line {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.rail-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--navy);
  transform: translateX(-1.5px);
}
@media only screen and (max-width: 768px) {
  .rail-line {
    flex-direction: row;
    gap: 0em;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .rail-line::before {
    left: -5px;
    right: -5px;
    top: 3px;
    bottom: auto;
    width: auto;
    height: 3px;
    transform: none;
  }
}

.rail-tail {
  height: 13px;
  position: relative;
}
.rail-tail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--navy);
  transform: translateX(-1.5px);
}
@media only screen and (max-width: 768px) {
  .rail-tail {
    display: none;
  }
}

.rstop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  height: 40px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .rstop {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.rstop .mark {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--navy);
  z-index: 4;
  position: relative;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.rstop .mark::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #9d2c35;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
}
.rstop.geo .mark {
  background: #9d2c35;
  border-color: #9d2c35;
}
.rstop .lab {
  position: absolute;
  white-space: nowrap;
  font-size: 2rem;
  letter-spacing: 0.1em;
  transition: color 0.3s, font-weight 0.3s;
  border: solid 2px #9d2c35;
  border-radius: 3rem;
  padding: 0.4em 0.8em;
  line-height: 1;
  z-index: 3;
}
.rstop .lab.r {
  left: 50%;
  margin-left: 2.5rem;
}
.rstop .lab.r::after {
  background: #9d2c35;
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 2.5rem;
  height: 1px;
}
.rstop .lab.l {
  right: 50%;
  margin-right: 2.5rem;
}
.rstop .lab.l::after {
  background: #9d2c35;
  content: "";
  width: 2.5rem;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(100%, -50%);
}
.rstop .lab.mod--nogeo {
  border: solid 2px #152d42;
}
.rstop .lab.mod--nogeo::after {
  background: #152d42 !important;
}
.rstop.active .mark {
  transform: scale(1.5);
  box-shadow: 0 0 0 5px rgba(157, 44, 53, 0.22);
}
.rstop.active .mark::after {
  animation: markPulse 1.4s ease-out infinite;
}
.rstop.active .lab {
  color: #fff;
  background: #9d2c35;
  border: solid 2px #9d2c35;
}
.rstop.active .lab.mod--nogeo {
  background: #152d42;
  border: solid 2px #152d42;
}
@media only screen and (max-width: 768px) {
  .rstop {
    flex: 1;
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
  .rstop .mark {
    width: 8px;
    height: 8px;
  }
  .rstop .lab,
  .rstop .lab.r,
  .rstop .lab.l {
    position: static;
    left: auto;
    right: auto;
    margin: 0;
    writing-mode: vertical-rl;
    font-size: 1.2rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
    padding: 0.4em 0.2em;
  }
  .rstop .lab::after,
  .rstop .lab.r::after,
  .rstop .lab.l::after {
    width: 1px;
    height: 1.8rem;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: -1;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .rstop .lab::after,
  .rstop .lab.r::after,
  .rstop .lab.l::after {
    height: 1.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .rstop.active .mark {
    box-shadow: 0 0 0 3px rgba(138, 20, 32, 0.16);
  }
}

.rlegend {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  padding-inline: 2rem;
  border-top: 1px solid var(--line-lo);
  display: flex;
  flex-direction: row;
  gap: 7px;
  font-size: 1.3rem;
  color: var(--ink-lo);
}
.rlegend > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rlegend .sw {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.rlegend .sw-geo {
  background: #9d2c35;
}
.rlegend .sw-ref {
  background: #fff;
  border: 2px solid var(--navy);
}
@media only screen and (max-width: 768px) {
  .rlegend {
    width: 100%;
    margin: 0 0 0;
    padding-top: 0;
    padding-inline: 1rem;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    font-size: 9px;
  }
  .rlegend .sw {
    width: 9px;
    height: 9px;
  }
}

/* station cards */
.stations {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.stn {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 92px;
  transition: box-shadow 0.3s;
}
.stn.spy {
  box-shadow: 0 8px 24px rgba(183, 98, 98, 0.5215686275), 0 2px 7px #b76262;
}
@media only screen and (max-width: 768px) {
  .stn {
    scroll-margin-top: calc(var(--nav-h) + 147px);
  }
}

.stn-head {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line-lo);
}

.stn-badge {
  color: #fff;
  padding: 1.6rem 2.2rem;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stn-badge-geo {
  background: #9d2c35;
}
.stn-badge-ref {
  background: #152d42;
}
@media only screen and (max-width: 768px) {
  .stn-badge {
    min-width: 60px;
    padding: 1rem 22px;
  }
}

.stn-kana {
  font-size: 10px;
  letter-spacing: 0.24em;
  opacity: 0.8;
}

.stn-name {
  font-family: var(--serif);
  font-weight: 700;
  margin-top: 2px;
  font-size: 2.3rem;
}
@media only screen and (max-width: 768px) {
  .stn-name {
    font-size: 2rem;
  }
}

.stn-hmain {
  flex: 1;
  padding: 1.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
@media only screen and (max-width: 768px) {
  .stn-hmain {
    padding: 0.5rem 1.8rem;
  }
}

.tg {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.tg-geo {
  background: var(--red-bg);
  color: #9d2c35;
  border: 1px solid #e6b3b8;
}
.tg-ref {
  background: var(--paper-2);
  color: var(--ink-lo);
  border: 1px solid var(--line);
}

.stn-min {
  font-size: 11px;
  color: var(--ink-lo);
}

.stn-lead {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
}
@media only screen and (max-width: 768px) {
  .stn-lead {
    font-size: 1.6rem;
  }
}

.stn-body {
  padding: 22px;
}

.stn-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 22px;
  align-items: start;
}
@media only screen and (max-width: 768px) {
  .stn-grid {
    grid-template-columns: 1fr;
  }
}

.stn-media {
  aspect-ratio: 1/1;
  border-radius: 5px;
  overflow: hidden;
  background: linear-gradient(135deg, #cfc7ba, #b3aa9a);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .stn-media {
    aspect-ratio: 5/4;
  }
}
.stn-media-ref {
  background: linear-gradient(135deg, #2c3a5a, #1a2744);
}
.stn-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stn-media .ph-label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.24);
  padding: 3px 8px;
  border-radius: 2px;
}

.stn-desc {
  font-size: 1.4rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0 0 15px;
  border-bottom: 1px solid #d8d9dc;
  padding-bottom: 0.8em;
}

.axis {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
}
.axis + .axis {
  margin-top: 8px;
}
.axis.mod--geo {
  display: grid;
  grid-template-columns: 8em 1fr;
  margin-top: 0.8em;
  padding-top: 0.8em;
  border-top: solid 1px #d8d9dc;
}
@media only screen and (max-width: 768px) {
  .axis.mod--geo {
    grid-template-columns: 9em 1fr;
  }
}

.axis-l {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #0e6e56;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  line-height: 1.4;
  text-align: center;
  height: -moz-fit-content;
  height: fit-content;
}
.axis-l.mod--nature {
  background: #e7f4ef;
  color: #0e6e56;
}
.axis-l.mod--culture {
  background: #efedfb;
  color: #534ab7;
}
.axis-l.mod--shoop {
  background: #f7efdd;
  color: #b07a1e;
}
.axis-l.mod--geo {
  background: #f2f2f2;
  color: #7b5542;
}

.axis-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0em 0.25em;
}

.atag {
  font-size: 1.4rem;
  padding: 3px 9px;
  border-radius: 2px;
  line-height: 1.2;
}

.stn-link {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 11px 20px;
  background: #9d2c35;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  border-radius: 4rem;
}
@media (hover: hover) and (pointer: fine) {
  .stn-link:hover {
    background: #9d2c35;
    transform: translateY(-2px);
  }
}

.stn-link-arrow {
  width: 1em;
  height: 1em;
}
.stn-link-arrow img {
  width: 100%;
  height: 100%;
}

@keyframes intMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes iconPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
html {
  scroll-behavior: smooth;
}

.p-top {
  overflow-x: hidden;
}
.p-top .p-mv {
  width: 100%;
  height: 590px;
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-top .p-mv {
    height: unset;
    aspect-ratio: 1/1;
    margin-top: 56px;
  }
}
.p-top .p-mv__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.p-top .p-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-mv .u-container {
  height: 100%;
}
.p-top .p-mv__left {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .p-top .p-mv__left {
    width: 50%;
    top: 40%;
    height: -moz-fit-content;
    height: fit-content;
    background: rgba(255, 255, 255, 0.85);
    padding-block: 2rem;
    left: 1rem;
    aspect-ratio: 1/1;
  }
}
.p-top .p-mv__ttl {
  display: block;
  width: 80%;
  max-width: 268px;
}
.p-top .p-mv__ttl img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-mv__txt {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 0.75em;
}
@media only screen and (max-width: 768px) {
  .p-top .p-mv__txt {
    font-size: 1.2rem;
  }
}
.p-top .p-mv__right {
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .p-top .p-mv__right {
    width: 75%;
  }
}
.p-top .p-mv__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .p-top .p-mv__right img {
    -o-object-position: 75%;
       object-position: 75%;
  }
}
.p-top .p-int {
  padding-block: 10rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-int {
    padding-block: 5rem;
  }
}
.p-top .p-int__txtWrap {
  padding-left: 2rem;
  border-left: 6px solid #9d2c35;
}
.p-top .p-int__ttl {
  font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 3.6rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-int__ttl {
    font-size: 2.6rem;
  }
}
.p-top .p-int__ttl small {
  font-family: "Marcellus", serif;
  font-size: 0.5em;
  letter-spacing: 0.1em;
  display: block;
}
.p-top .p-int__ttl span {
  color: #9d2c35;
}
.p-top .p-int__ttl sup {
  font-size: 1rem;
  vertical-align: top;
}
.p-top .p-int i {
  position: relative;
}
.p-top .p-int__txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .p-top .p-int__txt {
    font-size: 1.3rem;
  }
}
.p-top .p-int__txt small {
  font-size: 0.8em;
}
.p-top .p-int__slider {
  overflow: hidden;
  width: 100%;
  padding-top: 10rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-int__slider {
    padding-top: 5rem;
  }
}
.p-top .p-int__slideTrack {
  display: flex;
  gap: 3.4rem;
  width: -moz-max-content;
  width: max-content;
  cursor: grab;
}
.p-top .p-int__slideTrack:active {
  cursor: grabbing;
}
@media only screen and (max-width: 768px) {
  .p-top .p-int__slideTrack {
    gap: 1.5rem;
  }
}
.p-top .p-int__slide--offset {
  margin-top: 5rem;
}
.p-top .p-int__slide {
  width: 28vw;
  height: 100%;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 768px) {
  .p-top .p-int__slide {
    width: 50vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top .p-int__slide:hover {
    box-shadow: inset 0 0 0 3px #9d2c35;
  }
  .p-top .p-int__slide:hover .p-int__slideHover {
    opacity: 1;
  }
}
.p-top .p-int__slideImg {
  width: 100%;
  height: 100%;
}
.p-top .p-int__slideImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-int__slideHover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.p-top .p-int__slideIcon {
  width: 1.4em;
  display: inline-flex;
}
.p-top .p-int__slideIcon img {
  width: 100%;
}
.p-top .p-int__slideTtl {
  bottom: 0.5em;
  left: 0.5em;
  position: absolute;
  font-size: 2rem;
  z-index: 1;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 1px #333, 0 0 3px #333, 0 0 3px #333, 0 0 3px #333;
}
@media only screen and (max-width: 768px) {
  .p-top .p-int__slideTtl {
    font-size: 1.6rem;
  }
}
.p-top .p-int__slideTtl small {
  font-size: 0.8em;
}
.p-top .p-int__slideTtlIn {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.p-top .p-int__slideTtlIn img {
  width: 1em;
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-top .p-int__slideTtlIn img {
    display: block;
  }
}
.p-top .c-secMv {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 400px;
}
@media only screen and (max-width: 768px) {
  .p-top .c-secMv {
    height: 200px;
  }
}
.p-top .c-secMv__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.p-top .c-secMv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .p-top .c-secMv__img img {
    -o-object-position: 75%;
       object-position: 75%;
  }
}
.p-top .c-secMv__ttl {
  position: relative;
  color: #fff;
  line-height: 1.25;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 3.4rem;
}
.p-top .c-secMv__ttl small {
  font-size: 0.5em;
}
@media only screen and (max-width: 768px) {
  .p-top .c-secMv__ttl {
    font-size: 2.4rem;
  }
}
.p-top .c-secMv__cap {
  bottom: 0.5em;
  right: 0.5em;
  position: absolute;
  font-size: 1.3rem;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .p-top .c-secMv__cap {
    font-size: 1.2rem;
  }
}
.p-top .p-rank {
  padding-block: 10rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-rank {
    padding-block: 5rem;
  }
}
.p-top .p-rank__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12rem;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .p-top .p-rank__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.p-top .p-rank__ttlImg {
  width: 100%;
  margin-bottom: 2rem;
}
.p-top .p-rank__ttlImg img {
  width: 100%;
}
.p-top .p-rank__listHead {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 2em;
  background: #b8a397;
  padding: 0.5em 0em;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-top .p-rank__listHead {
    font-size: 1.6rem;
  }
}
.p-top .p-rank__listRow {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 2em;
  padding: 0.8em 1em;
  border-bottom: 1px solid #dcdddd;
  align-items: center;
  font-size: 1.6rem;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-top .p-rank__listRow {
    font-size: 1.3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top .p-rank__listRow:hover .p-rank__tooltip {
    opacity: 1;
    visibility: visible;
  }
}
.p-top .p-rank__listRow.is-open .p-rank__tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-top .p-rank__tooltip {
  position: absolute;
  left: 105%;
  top: 50%;
  transform: translateY(-70%);
  width: 28rem;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-top .p-rank__tooltip {
    left: auto;
    right: 0;
    top: auto;
    bottom: calc(100% + 0.5rem);
    transform: none;
    width: 90vw;
    max-width: 32rem;
  }
}
.p-top .p-rank__tooltipHead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #dcdddd;
  font-size: 1.4rem;
}
.p-top .p-rank__tooltipHead small {
  font-size: 0.8em;
  color: #929292;
}
.p-top .p-rank__tooltipList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-top .p-rank__tooltipItem {
  display: grid;
  grid-template-columns: 1.8em 1fr auto;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  font-size: 1.3rem;
}
.p-top .p-rank__tooltipItem--hl {
  background: rgba(157, 44, 53, 0.1);
}
.p-top .p-rank__tooltipRank {
  color: #9d2c35;
  font-weight: bold;
}
.p-top .p-rank__tooltipScore {
  color: #929292;
  white-space: nowrap;
}
.p-top .p-rank__tooltipBadge {
  display: inline-block;
  font-size: 0.75em;
  background: #9d2c35;
  color: #fff;
  padding: 0.1em 0.4em;
  border-radius: 2px;
  margin-left: 0.3em;
  vertical-align: middle;
}
.p-top .p-rank__listRank {
  color: #9d2c35;
  font-size: 1.5em;
  font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.p-top .p-rank__listIcon {
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  background: #9d2c35;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.p-top .p-rank__cap {
  font-size: 1.2rem;
  color: #929292;
  margin-top: 1.5rem;
  line-height: 1.8;
}
.p-top .p-rank__txtWrap {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-top .p-rank__txtWrap {
    grid-area: 1/1/2/2;
    padding-left: 0;
  }
}
.p-top .p-acc {
  position: relative;
  padding-block: 10rem;
  overflow: hidden;
}
.p-top .p-acc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4f1eb;
  z-index: -2;
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc {
    padding-block: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc__mapWrap {
    width: 100%;
    overflow-x: scroll;
    height: 100vw;
    padding-top: 11rem;
  }
}
.p-top .p-acc__map {
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 8rem;
  margin-inline: auto;
  max-width: 950px;
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc__map {
    margin-top: 4rem;
    max-width: unset;
    margin-top: unset;
    width: auto;
    aspect-ratio: 2000/796;
  }
}
.p-top .p-acc__map > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.p-top .p-acc__icon {
  width: 5%;
  transform: translate(-50%, -50%);
  position: absolute;
  cursor: pointer;
}
.p-top .p-acc__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgba(157, 44, 53, 0.35);
  animation: iconPulse 2s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
@media (prefers-reduced-motion: reduce) {
  .p-top .p-acc__icon::before {
    animation: none;
  }
}
.p-top .p-acc__icon {
  top: 9%;
  box-shadow: 0 0 10px #ffc155;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc__icon {
    width: 5.5%;
  }
}
.p-top .p-acc__icon > img {
  width: 100%;
  height: auto;
  display: block;
}
.p-top .p-acc__icon > div {
  position: absolute;
  bottom: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  padding: 0.5em 1em 1em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc__icon > div {
    bottom: 4rem !important;
  }
}
.p-top .p-acc__icon > div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 2rem;
}
.p-top .p-acc__icon > div::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
}
.p-top .p-acc__icon > div h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  color: #333;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc__icon > div h3 {
    font-size: 1.6rem;
  }
}
.p-top .p-acc__icon > div a {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 1.4rem;
  background: #9d2c35;
  color: #fff;
  padding: 0.5em 1.7em 0.5em 1.2em;
  border-radius: 2em;
  text-decoration: none;
}
.p-top .p-acc__icon > div a img {
  width: 1em;
  filter: brightness(0) invert(1);
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc__icon > div {
    position: fixed;
    bottom: 2rem;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    width: calc(100vw - 4rem);
    max-width: 20rem;
    text-align: center;
    z-index: 300;
  }
  .p-top .p-acc__icon > div::before, .p-top .p-acc__icon > div::after {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top .p-acc__icon:hover > div {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.p-top .p-acc__icon.is-open > div {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-top .p-acc__icon.mod--nakano {
  left: 71%;
}
.p-top .p-acc__icon.mod--ogikubo {
  left: 55.3%;
}
.p-top .p-acc__icon.mod--mitaka {
  left: 39.5%;
}
.p-top .p-acc__icon.mod--higashi-koganei {
  left: 28.9%;
}
.p-top .p-acc__icon.mod--musashi-koganei {
  left: 23.8%;
}
.p-top .p-acc__spots {
  display: grid;
  margin-top: 4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 2rem;
  gap: 0.6rem;
  grid-template-columns: repeat(6, 1fr);
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc__spots {
    grid-template-columns: repeat(3, 1fr);
    overflow-x: auto;
    gap: 0.3rem;
    -webkit-overflow-scrolling: touch;
  }
}
.p-top .p-acc__spotImg {
  overflow: hidden;
  border-radius: 4px;
}
.p-top .p-acc__spotImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-acc__spotTtl {
  font-size: 1.4rem;
  margin-top: 0.8rem;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc__spotTtl {
    font-size: 1.2rem;
  }
}
.p-top .p-acc__stns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc__stns {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
}
.p-top .p-acc__stnImg {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.p-top .p-acc__stnImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-acc__stnName {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: "Marcellus", serif;
  font-size: 2.4rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc__stnName {
    font-size: 1.8rem;
  }
}
.p-top .p-acc__stnLines {
  font-size: 1.3rem;
  margin-top: 0.8rem;
  line-height: 1.7;
  color: #555;
}
@media only screen and (max-width: 768px) {
  .p-top .p-acc__stnLines {
    font-size: 1.1rem;
  }
}
.p-top .p-more {
  padding-block: 10rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-more {
    padding-block: 5rem;
  }
}
.p-top .p-more__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12rem;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .p-top .p-more__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.p-top .p-more__img {
  margin-left: calc(15% - 15vw);
}
.p-top .p-more__txtWrap {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-top .p-more__txtWrap {
    grid-area: 1/1/2/2;
  }
}
.p-top .p-more__tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 2rem;
  list-style: none;
  margin-left: 2rem;
}
.p-top .p-more__tags li {
  display: inline-block;
  background: #1a2540;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 0.5em 1.2em;
  border-radius: 0.5em;
}
@media only screen and (max-width: 768px) {
  .p-top .p-more__tags li {
    font-size: 1.3rem;
  }
}
.p-top .p-more__cap {
  margin-top: 1em;
  font-size: 1.3rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .p-top .p-more__cap {
    font-size: 1.1rem;
  }
}
.p-top .p-parks {
  padding-block: 10rem;
  position: relative;
}
.p-top .p-parks::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4f1eb;
  z-index: -2;
}
@media only screen and (max-width: 768px) {
  .p-top .p-parks {
    padding-block: 5rem;
  }
}
.p-top .p-parks__grid {
  display: grid;
  margin-right: calc(15% - 15vw);
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 12rem;
  align-items: start;
}
@media only screen and (max-width: 768px) {
  .p-top .p-parks__grid {
    margin-right: 0;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.p-top .p-parks__txtWrap {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .p-top .p-parks__txtWrap {
    align-items: flex-start;
  }
}
.p-top .p-parks__txt {
  line-height: 2;
  margin-bottom: 3rem;
  font-size: 1.6rem;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .p-top .p-parks__txt {
    font-size: 1.3rem;
    text-align: left;
    margin-left: 2rem;
  }
}
.p-top .p-parks__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.p-top .p-parks__imgSm {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.p-top .p-parks__imgSm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-parks__imgCap {
  position: absolute;
  bottom: 0.4rem;
  left: 0.5rem;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
}
.p-top .p-parks__imgWrap {
  height: 100%;
}
.p-top .p-parks__imgLg {
  position: relative;
  overflow: hidden;
}
.p-top .p-parks__imgLg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-parks__imgCapLg {
  position: absolute;
  bottom: 0.5rem;
  left: 0.8rem;
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
}
.p-top .p-parks__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  padding: 1.5rem 2rem;
  margin: 0;
  gap: 0.5rem 1rem;
  border: 1px solid #b8a397;
  font-size: 1.4rem;
  line-height: 1.7;
  background: #fff;
  margin-top: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-parks__list {
    grid-template-columns: 1fr;
    font-size: 1.2rem;
  }
}
.p-top .p-edq {
  padding-block: 10rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-edq {
    padding-block: 5rem;
  }
}
.p-top .p-edq__tags {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1em;
  margin-top: 2rem;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .p-top .p-edq__tags {
    flex-wrap: wrap;
    gap: 0.5em;
  }
}
.p-top .p-edq__tags li {
  display: inline-block;
  background: #1a2540;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 0.5em 1.2em;
  border-radius: 0.5em;
}
@media only screen and (max-width: 768px) {
  .p-top .p-edq__tags li {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-edq__mapWrap {
    width: 100%;
    overflow-x: scroll;
    height: 130vw;
    padding-top: 4rem;
  }
}
.p-top .p-edq__map {
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 8rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-edq__map {
    margin-top: 4rem;
    max-width: unset;
    margin-top: unset;
    width: auto;
    aspect-ratio: 2000/884;
  }
}
.p-top .p-edq__map > img {
  width: 100%;
  height: 100%;
  display: block;
}
.p-top .p-edq__icon {
  width: 4%;
  transform: translate(-50%, -50%);
  position: absolute;
  cursor: pointer;
}
.p-top .p-edq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgba(157, 44, 53, 0.35);
  animation: iconPulse 2s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
@media (prefers-reduced-motion: reduce) {
  .p-top .p-edq__icon::before {
    animation: none;
  }
}
.p-top .p-edq__icon {
  top: 39%;
  box-shadow: 0 0 10px #ffc155;
  border-radius: 50%;
}
.p-top .p-edq__icon > img {
  width: 100%;
  height: auto;
  display: block;
}
.p-top .p-edq__icon > div {
  position: absolute;
  bottom: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  padding: 0.5em 1em 1em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
  z-index: 10;
}
.p-top .p-edq__icon > div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 2rem;
}
.p-top .p-edq__icon > div::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
}
.p-top .p-edq__icon > div h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  color: #333;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-top .p-edq__icon > div h3 {
    font-size: 1.6rem;
  }
}
.p-top .p-edq__icon > div a {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 1.4rem;
  background: #9d2c35;
  color: #fff;
  padding: 0.5em 1.7em 0.5em 1.2em;
  border-radius: 2em;
  text-decoration: none;
}
.p-top .p-edq__icon > div a img {
  width: 1em;
  filter: brightness(0) invert(1);
}
@media (hover: hover) and (pointer: fine) {
  .p-top .p-edq__icon:hover > div {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.p-top .p-edq__icon.is-open > div {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-top .p-edq__icon.mod--nakano {
  left: 59.2%;
}
.p-top .p-edq__icon.mod--ogikubo {
  left: 52.2%;
}
.p-top .p-edq__icon.mod--mitaka {
  left: 39.1%;
}
.p-top .p-edq__icon.mod--higashi-koganei {
  left: 27.9%;
}
.p-top .p-edq__icon.mod--musashi-koganei {
  left: 24.1%;
}
.p-top .p-one {
  padding-block: 10rem;
  position: relative;
}
.p-top .p-one::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4f1eb;
  z-index: -2;
}
@media only screen and (max-width: 768px) {
  .p-top .p-one {
    padding-block: 5rem;
  }
}
.p-top .p-one__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12rem;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .p-top .p-one__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-one__imgWrap {
    grid-area: 2/1/3/2;
  }
}
.p-top .p-one__imgMain {
  margin-left: calc(15% - 15vw);
  width: calc(100% - (15% - 15vw));
  overflow: hidden;
}
.p-top .p-one__imgMain img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-top .p-one__imgMain {
    margin-left: 0;
    width: 100%;
  }
}
.p-top .p-one__imgSubs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.6rem;
}
.p-top .p-one__imgSm {
  overflow: hidden;
}
.p-top .p-one__imgSm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-top .p-one__txtWrap {
    grid-area: 1/1/2/2;
  }
}
.p-top .p-one__tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 2rem;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .p-top .p-one__tags {
    margin-left: 2rem;
  }
}
.p-top .p-one__tags li {
  display: inline-block;
  background: #1a2540;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 0.5em 1.2em;
  border-radius: 0.5em;
}
@media only screen and (max-width: 768px) {
  .p-top .p-one__tags li {
    font-size: 1.3rem;
  }
}
.p-top .p-alo__int {
  padding-block: 10rem 5rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-alo__int {
    padding-block: 5rem 2.5rem;
  }
}
.p-top .p-alo__intLead {
  text-align: center;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-alo__intLead {
    font-size: 1.8rem;
  }
}
.p-top .p-alo__intTxt {
  text-align: center;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .p-top .p-alo__intTxt {
    font-size: 1.3rem;
  }
}
.p-top .p-deve__int {
  padding-block: 8rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-top .p-deve__int {
    padding-block: 5rem;
  }
}
.p-top .p-deve__intTtl {
  font-family: "Marcellus", serif;
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #4d4d52;
  margin-bottom: 1.6rem;
}
.p-top .p-deve__intTtl::after {
  content: "";
  display: block;
  width: 2em;
  height: 1px;
  background: #4d4d52;
  margin: 1rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-top .p-deve__intTtl {
    font-size: 2rem;
  }
}
.p-top .p-deve__intTxt {
  font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.8rem;
  line-height: 2;
  color: #4d4d52;
}
@media only screen and (max-width: 768px) {
  .p-top .p-deve__intTxt {
    font-size: 1.6rem;
  }
}
.p-top .p-deve__bg01 {
  background-image: url(../../img/top/dev_bg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.p-top .p-deve__bg02 {
  background-image: url(../../img/top/dev_bg02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.p-top .p-deve__block {
  position: relative;
  padding-block: 7rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-top .p-deve__block {
    padding-block: 4rem;
  }
}
.p-top .p-deve__block.mod--dark {
  color: #fff;
}
.p-top .p-deve__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .p-top .p-deve__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.p-top .p-deve__grid--rev .p-deve__imgCol {
  order: -1;
}
@media only screen and (max-width: 768px) {
  .p-top .p-deve__grid--rev .p-deve__imgCol {
    order: 0;
  }
}
.p-top .p-deve__stnTag {
  display: inline-block;
  border: 1px solid currentColor;
  padding: 0.3em 0.8em;
  font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  background: #152d42;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .p-top .p-deve__stnTag {
    font-size: 1.6rem;
  }
}
.p-top .p-deve__stnTag.mod--dark {
  background: #fff;
  color: #152d42;
}
.p-top .p-deve__body {
  font-size: 1.6rem;
  line-height: 2.2;
}
@media only screen and (max-width: 768px) {
  .p-top .p-deve__body {
    font-size: 1.3rem;
  }
}
.p-top .p-deve__photo {
  position: relative;
  overflow: hidden;
}
.p-top .p-deve__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-deve__photoCap {
  position: absolute;
  bottom: 0.6em;
  right: 0.6em;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.2em 0.6em;
  letter-spacing: 0.05em;
}
.p-top .p-deve__num {
  position: absolute;
  bottom: -0.15em;
  left: -0.05em;
  font-family: "EB Garamond", serif;
  font-size: 26rem;
  line-height: 1;
  font-weight: 300;
  font-style: italic;
  pointer-events: none;
  z-index: 1;
  color: rgba(184, 163, 151, 0.4);
}
@media only screen and (max-width: 768px) {
  .p-top .p-deve__num {
    font-size: 14rem;
  }
}
.p-top .p-deve__num--right {
  left: auto;
  right: 0em;
}

.p-ong {
  padding-block: 5rem 8rem;
}
@media only screen and (max-width: 768px) {
  .p-ong {
    padding-block: 3rem 5rem;
  }
}
.p-ong__bg {
  background: #f4f1eb;
  padding: 5rem 0;
}
@media only screen and (max-width: 768px) {
  .p-ong__bg {
    overflow: hidden;
  }
}
.p-ong__slider {
  overflow: hidden;
  margin-top: 4rem;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-bottom: 1rem;
}
.p-ong__slider:active {
  cursor: grabbing;
}
@media only screen and (max-width: 768px) {
  .p-ong__slider {
    margin-top: 2rem;
    overflow: visible;
  }
}
.p-ong__track {
  display: flex;
  -moz-column-gap: 0;
       column-gap: 0;
}
@media only screen and (max-width: 768px) {
  .p-ong__track {
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
.p-ong .p-ong__slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  padding-inline: 10rem;
}
@media only screen and (max-width: 768px) {
  .p-ong .p-ong__slide {
    flex: 0 0 92.5925925926%;
    grid-template-columns: 1fr;
    gap: 0;
    padding-inline: 0;
    background: #fff;
    padding: 1.5rem 1rem;
  }
}
.p-ong__ttl {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .p-ong__ttl {
    margin-bottom: 1rem;
  }
}
.p-ong__ttl em {
  font-style: normal;
  display: inline-block;
  border: 1px solid #4d4d52;
  padding: 0.2em 0.7em;
  font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.8rem;
  white-space: nowrap;
  background: #152d42;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .p-ong__ttl em {
    font-size: 1.5rem;
  }
}
.p-ong__ttl span {
  font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .p-ong__ttl span {
    font-size: 1.7rem;
  }
}
.p-ong__dl {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .p-ong__dl {
    margin-bottom: 1rem;
  }
}
.p-ong__dl > div {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .p-ong__dl > div {
    margin-bottom: 1rem;
  }
}
.p-ong__dl dt {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  display: flex;
}
.p-ong__dl dt::before {
  content: "";
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  background: #152d42;
  margin-right: 0.5em;
  margin-top: 0.6em;
  vertical-align: 0.1em;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .p-ong__dl dt {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
  }
}
.p-ong__dl dd {
  font-size: 1.4rem;
  line-height: 1.5;
  padding-left: 1.4em;
}
@media only screen and (max-width: 768px) {
  .p-ong__dl dd {
    font-size: 1.3rem;
  }
}
.p-ong__note {
  font-size: 1.3rem;
  color: #929292;
}
@media only screen and (max-width: 768px) {
  .p-ong__note {
    font-size: 1.2rem;
  }
}
.p-ong__txtWrap {
  width: 100%;
  position: relative;
  z-index: 1;
}
.p-ong__img {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-ong__img {
    aspect-ratio: 4/3;
  }
}
.p-ong__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-ong__imgCap {
  position: absolute;
  bottom: 0.6em;
  right: 0.6em;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.2em 0.6em;
}
.p-ong__num {
  position: absolute;
  bottom: -0.15em;
  left: 0em;
  font-family: "EB Garamond", serif;
  font-size: 25rem;
  line-height: 1;
  font-weight: 300;
  font-style: italic;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .p-ong__num {
    display: none;
  }
}
.p-ong .p-ong__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .p-ong .p-ong__nav {
    margin-top: 2rem;
  }
}
.p-ong .p-ong__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
}
.p-ong .p-ong__arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #4d4d52;
  border-right: 2px solid #4d4d52;
}
.p-ong .p-ong__arrow--prev::after {
  transform: rotate(-135deg) translate(-2px, 2px);
}
.p-ong .p-ong__arrow--next::after {
  transform: rotate(45deg) translate(-2px, 2px);
}
.p-ong .p-ong__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 10%;
}
@media only screen and (max-width: 768px) {
  .p-ong .p-ong__dots {
    width: 30%;
  }
}
.p-ong .p-ong__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b7b7b7;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
.p-ong .p-ong__dot.is-active {
  background: #9d2c35;
  transform: scale(1.25);
}

.p-list {
  padding-block: 10rem;
}
@media only screen and (max-width: 768px) {
  .p-list {
    padding-block: 5rem;
  }
}
.p-list__int {
  text-align: center;
}
.p-list__intTtl {
  font-family: "Marcellus", serif;
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #4d4d52;
  margin-bottom: 1.6rem;
}
.p-list__intTtl::after {
  content: "";
  display: block;
  width: 2em;
  height: 1px;
  background: #4d4d52;
  margin: 1rem auto 0;
}
@media only screen and (max-width: 768px) {
  .p-list__intTtl {
    font-size: 2rem;
  }
}
.p-list__intTxt {
  font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.8rem;
  line-height: 2;
  color: #4d4d52;
}
@media only screen and (max-width: 768px) {
  .p-list__intTxt {
    font-size: 1.6rem;
  }
}
.p-list__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  margin-top: 5rem;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .p-list__main {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }
}
.p-list__mainImg {
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-list__mainImg {
    aspect-ratio: 4/3;
  }
}
.p-list__mainImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-list__mainBody {
  padding: 4rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .p-list__mainBody {
    padding: 2.5rem;
  }
}
.p-list__badge {
  display: inline-block;
  align-self: flex-start;
  background: #152d42;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.4em 1em;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.p-list__mainTtl {
  font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .p-list__mainTtl {
    font-size: 2.4rem;
  }
}
.p-list__mainTxt {
  font-size: 1.4rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-list__mainTxt {
    font-size: 1.3rem;
  }
}
.p-list__mainDl {
  border-top: 1px solid #f2f2f2;
  margin-bottom: 2.5rem;
  flex: 1;
}
.p-list__mainDl > div {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 0.5rem;
  padding-block: 1rem;
  border-bottom: 1px solid #f2f2f2;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .p-list__mainDl > div {
    font-size: 1.3rem;
  }
}
.p-list__mainDl dt {
  color: #929292;
}
.p-list__mainDl dd {
  line-height: 1.7;
}
.p-list__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  background: #9d2c35;
  color: #fff;
  text-decoration: none;
  padding: 0.8em;
  font-size: 1.5rem;
  border-radius: 3rem;
  transition: opacity 0.2s;
}
.p-list__btn img {
  width: 1.1em;
  filter: brightness(10);
}
@media (hover: hover) and (pointer: fine) {
  .p-list__btn:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 768px) {
  .p-list__btn {
    font-size: 1.2rem;
    padding: 0.25em;
  }
}
.p-list__grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .p-list__grid {
    margin-top: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.p-list__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #4d4d52;
  transition: box-shadow 0.2s, transform 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-list__card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
  }
  .p-list__card:hover .p-list__cardImg img {
    transform: scale(1.07);
  }
}
.p-list__cardImg {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.p-list__cardImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.p-list__cardBody {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .p-list__cardBody {
    padding: 1rem 0.5rem;
  }
}
.p-list__cardTtl {
  font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}
@media only screen and (max-width: 768px) {
  .p-list__cardTtl {
    font-size: 1.4rem;
    margin-bottom: 0rem;
  }
}
.p-list__cardDl {
  flex: 1;
  margin-bottom: 1.5rem;
}
.p-list__cardDl > div {
  display: grid;
  grid-template-columns: 5em 1fr;
  font-size: 1.4rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid #f2f2f2;
}
@media only screen and (max-width: 768px) {
  .p-list__cardDl > div {
    font-size: 1.3rem;
    grid-template-columns: 1fr;
    padding-block: 4px;
  }
}
.p-list__cardDl dt {
  color: #929292;
}
@media only screen and (max-width: 768px) {
  .p-list__cardDl dt {
    font-size: 1.2rem;
  }
}
.p-list__cardDl dd {
  line-height: 1.6;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.5;
}

.p-brand {
  background-image: url(../../img/top/brand_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 12rem;
  background-color: #f5f4f2;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-brand {
    padding-block: 6rem;
  }
}
.p-brand__inner {
  max-width: 72rem;
}
.p-brand__logo {
  margin-bottom: 4rem;
  width: 20rem;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .p-brand__logo {
    width: 16rem;
  }
}
.p-brand__logo img {
  display: block;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .p-brand__logo {
    margin-bottom: 2rem;
  }
}
.p-brand__hankyu {
  margin-bottom: 8rem;
  margin-inline: auto;
  width: 22rem;
}
@media only screen and (max-width: 768px) {
  .p-brand__hankyu {
    width: 20rem;
  }
}
.p-brand__hankyu img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .p-brand__hankyu {
    margin-bottom: 4rem;
  }
  .p-brand__hankyu img {
    height: 10rem;
  }
}
.p-brand__ttl {
  font-family: "Marcellus", serif;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: #4d4d52;
}
@media only screen and (max-width: 768px) {
  .p-brand__ttl {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}
.p-brand__ttl::after {
  content: "";
  display: block;
  width: 3em;
  height: 2px;
  background: #9d2c35;
  margin: 1.5rem auto 4rem;
}
.p-brand__lead {
  font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.2rem;
  line-height: 1.8;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-brand__lead {
    font-size: 1.7rem;
    margin-bottom: 3rem;
  }
}
.p-brand__body p {
  font-size: 1.5rem;
  line-height: 2;
}
.p-brand__body p:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .p-brand__body p {
    font-size: 1.3rem;
  }
}
.p-brand__backWrap {
  padding-block: 5rem;
  display: flex;
  justify-content: center;
  text-align: center;
}
.p-brand__back {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4d4d52;
  padding: 2rem 5rem;
  text-decoration: none;
  color: #4d4d52;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  min-width: 42rem;
  transition: background 0.2s, color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-brand__back:hover {
    background: #4d4d52;
    color: #fff;
  }
}
@media only screen and (max-width: 768px) {
  .p-brand__back {
    min-width: unset;
    width: 100%;
    font-size: 1.4rem;
    padding: 1.8rem 2rem;
  }
}
/*# sourceMappingURL=../../map/top/top.css.map */