@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* 除算math.divを使うのに必要な記述 */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: system-ui;
}
body a {
  color: #0f0f0f;
}
body a :hover {
  transition: 0.5s;
  -webkit-transition: 0.5s; /* Chrome、Safari用 */
  -moz-transition: 0.5s; /* Firefox用 */
  -o-transition: 0.5s; /* Opera用 */
  opacity: 0.8;
}
body img {
  max-width: 100%;
  height: auto;
}
body .mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
}

/* 非表示状態 */
.inactive {
  display: none;
  opacity: 0;
}

/* 表示状態 */
.active {
  display: block;
  opacity: 1;
}

#navigation {
  opacity: 0;
  visibility: hidden; /* 見えなくするが、スペースを維持 */
  transition: opacity 0.5s ease-in-out;
}

#navigation.visible {
  opacity: 1;
  visibility: visible; /* 表示状態 */
  transition: opacity 0.5s ease-in-out;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 8px;
  background-color: white;
  z-index: 99999;
  box-shadow: 0px 0px 15px -5px #777777;
}
.nav__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.nav__wrap .logo img {
  height: 50px;
}
@media screen and (max-width: 576px) {
  .nav__wrap .logo img {
    height: 30px;
  }
}
.nav__wrap .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 576px) {
  .nav__wrap .menu {
    display: none;
  }
}

.drawer-hamburger {
  top: unset;
  width: 30px;
  display: none;
}
@media screen and (max-width: 576px) {
  .drawer-hamburger {
    display: block;
  }
}

.drawer-nav {
  background-color: #fafafa;
}
.drawer-nav ul .logo {
  padding-left: 10px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
}
.drawer-nav ul li {
  border-bottom: 1px gray dotted;
}
.drawer-nav ul li a {
  padding-left: 16px;
  padding-top: 16px;
  padding-right: 8px;
  padding-bottom: 16px;
  display: block;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.drawer-nav ul li a::after {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-repeat: no-repeat;
}
.drawer-nav ul li a:hover {
  background-color: white;
  text-decoration: none;
  color: black;
}

/* ナビの背景を前面に出す */
.drawer--right.drawer-open .drawer-nav {
  width: 100%;
}

/* アイコンの位置 */
.drawer--right.drawer-open .drawer-hamburger {
  right: 0;
}

body {
  line-height: normal;
}

.contactArea {
  margin-top: 40px;
}
.contactArea .titleArea {
  text-align: center;
  margin-bottom: 40px;
}
.contactArea .titleArea .title {
  font-size: clamp(4rem, 3.9346938776rem + 0.2040816327vw, 4.2rem);
}
.contactArea .titleArea .sub {
  color: black;
}
.contactArea form {
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  .contactArea form {
    padding: 0px;
  }
}
.contactArea form .wrap {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap {
    margin-bottom: 20px;
  }
}
.contactArea form .wrap {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap {
    flex-direction: column;
  }
}
.contactArea form .wrap .head {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap .head {
    width: 100%;
  }
}
.contactArea form .wrap .contents {
  display: flex;
  width: 70%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap .contents {
    width: 100%;
  }
}
.contactArea form .wrap .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap .head {
    justify-content: start;
    gap: 8px;
  }
}
.contactArea form .wrap .head label {
  font-weight: bold;
}
.contactArea form .wrap .head span {
  color: white;
  font-size: clamp(1rem, 0.9346938776rem + 0.2040816327vw, 1.2rem);
  background: #183C94;
  padding: 3px 10px;
  border-radius: 15px;
}
.contactArea form .wrap.submit {
  flex-direction: column;
  align-items: center;
}
.contactArea form .wrap .wpcf7-tel, .contactArea form .wrap .wpcf7-text, .contactArea form .wrap .wpcf7-email, .contactArea form .wrap .wpcf7-textarea {
  border: none;
  background-color: #f4f4f4;
  width: 100%;
  padding: 10px;
}
.contactArea form .wrap .wpcf7-form-control-wrap {
  width: 100%;
}
.contactArea form .wrap input[type=text] {
  width: 100% !important;
  box-sizing: border-box;
}
.contactArea form .wrap .wpcf7-select {
  border: none;
  background-color: #f4f4f4;
  width: 50%;
  padding: 10px;
}
.contactArea form .wrap .wpcf7-submit {
  background-color: #183C94;
  width: 50%;
  padding: 5px 0px;
  font-weight: bold;
  color: white;
  text-align: center;
  border-radius: 25px;
  border: none;
}
@media screen and (max-width: 768px) {
  .contactArea form .wrap .wpcf7-submit {
    width: 100%;
  }
}
.contactArea form .btnArea {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .contactArea form .btnArea {
    flex-direction: column;
  }
}
.contactArea form .btnArea button, .contactArea form .btnArea input {
  background-color: #183C94;
  width: 50%;
  padding: 5px 0px;
  font-weight: bold;
  color: white;
  text-align: center;
  border-radius: 25px;
  border: none;
}
@media screen and (max-width: 768px) {
  .contactArea form .btnArea button, .contactArea form .btnArea input {
    width: 100%;
  }
}
.contactArea form .btnArea .wpcf7-spinner {
  display: none;
}
.contactArea .thanks {
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.contactArea .thanks .title {
  font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
  color: #183C94;
  margin-bottom: 40px;
  font-weight: bold;
}
.contactArea .thanks .textArea {
  line-height: 150%;
}
.contactArea .thanks .textArea .name {
  font-weight: bold;
  margin-bottom: 20px;
  margin-right: 10px;
}
.contactArea .thanks .textArea .name span {
  font-size: clamp(1.8rem, 1.7346938776rem + 0.2040816327vw, 2rem);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.row > [data-reveal]:nth-child(1) {
  transition-delay: 0.08s;
}
.row > [data-reveal]:nth-child(2) {
  transition-delay: 0.16s;
}
.row > [data-reveal]:nth-child(3) {
  transition-delay: 0.24s;
}
.row > [data-reveal]:nth-child(4) {
  transition-delay: 0.32s;
}

.pnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.55rem 0;
  transform: translateY(-100%);
  transition: transform 0.35s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pnav.is-visible {
  transform: translateY(0);
}
.pnav.is-hidden {
  transform: translateY(-100%);
}
.pnav__brand {
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  color: #0f0f0f;
  letter-spacing: 0.06em;
}
.pnav__brand span {
  font-weight: 400;
  font-size: 0.65rem;
  margin-left: 0.5em;
  opacity: 0.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pnav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2px;
}
.pnav__menu a {
  display: block;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  color: #555;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.pnav__menu a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #0f0f0f;
}
.pnav__burger {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  color: #0f0f0f;
  transition: opacity 0.15s;
}
.pnav__burger:active {
  opacity: 0.5;
}

.pnav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.pnav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pnav-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #fff;
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.35s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
}
.pnav-sidebar.is-open {
  transform: translateX(0);
}
.pnav-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #aaa;
  text-transform: uppercase;
}
.pnav-sidebar__close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  transition: color 0.15s;
}
.pnav-sidebar__close:hover {
  color: #0f0f0f;
}
.pnav-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.pnav-sidebar__list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: #333;
  font-size: 0.88rem;
  transition: all 0.15s;
}
.pnav-sidebar__list a i {
  font-size: 1.1rem;
  opacity: 0.3;
  width: 1.25rem;
  text-align: center;
  transition: opacity 0.15s;
}
.pnav-sidebar__list a:hover {
  background: #fafafa;
  padding-left: 1.75rem;
}
.pnav-sidebar__list a:hover i {
  opacity: 0.6;
}

.p-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.p-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.p-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.p-hero__glow--1 {
  width: 600px;
  height: 600px;
  background: rgba(99, 102, 241, 0.12);
  top: -200px;
  right: -150px;
  animation: glowDrift1 12s ease-in-out infinite;
}
.p-hero__glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, 0.08);
  bottom: -100px;
  left: -100px;
  animation: glowDrift2 15s ease-in-out infinite;
}
.p-hero__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.p-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(4px);
}
.p-hero__title {
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #fff;
}
.p-hero__sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  opacity: 0.45;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.p-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  font-size: 0.82rem;
  opacity: 0.35;
  font-weight: 300;
}
.p-hero__meta i {
  margin-right: 0.3em;
  font-size: 0.9rem;
}
.p-hero__scroll {
  display: inline-block;
  margin-top: 4rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.5rem;
  text-decoration: none;
  animation: heroFloat 2.5s ease-in-out infinite;
}
.p-hero__scroll:hover {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes glowDrift1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, 20px);
  }
  66% {
    transform: translate(-20px, 10px);
  }
}
@keyframes glowDrift2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(-20px, -30px);
  }
  66% {
    transform: translate(25px, -15px);
  }
}
.p-sec {
  padding: 6rem 0;
}
@media screen and (max-width: 768px) {
  .p-sec {
    padding: 3.5rem 0;
  }
}
.p-sec--alt {
  background: #fafafa;
}
.p-sec--dark {
  background: #0f0f0f;
  color: #fff;
}
.p-sec--dark .p-sec__num {
  color: rgba(255, 255, 255, 0.08);
}
.p-sec__head {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .p-sec__head {
    margin-bottom: 2rem;
  }
}
.p-sec__num {
  display: block;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  letter-spacing: -0.02em;
  margin-bottom: -0.15em;
}
.p-sec__title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.p-block, .p-card-icon, .p-kpi-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.3s 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-block:hover, .p-card-icon:hover, .p-kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 12px 40px rgba(0, 0, 0, 0.08);
}
.p-block--muted {
  background: #f0f0f0;
  box-shadow: none;
}
.p-block--muted:hover {
  box-shadow: none;
  transform: none;
}
.p-block--highlight {
  background: linear-gradient(135deg, #0f0f0f, #1a1a2e);
  color: #fff;
}
.p-block--highlight:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 16px 48px rgba(0, 0, 0, 0.15);
}
.p-block--highlight h3 {
  border-color: rgba(255, 255, 255, 0.12) !important;
}
.p-block--highlight h3 i {
  opacity: 0.7 !important;
}
.p-block--highlight ul, .p-block--highlight ol {
  color: rgba(255, 255, 255, 0.85);
}
.p-block h3, .p-card-icon h3, .p-kpi-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.01em;
}
.p-block h3 i, .p-card-icon h3 i, .p-kpi-card h3 i {
  font-size: 1.05rem;
  opacity: 0.35;
}
.p-block h3 + h3, .p-card-icon h3 + h3, .p-kpi-card h3 + h3 {
  margin-top: 1.5rem;
}
.p-block ul, .p-card-icon ul, .p-kpi-card ul,
.p-block ol,
.p-card-icon ol,
.p-kpi-card ol {
  padding-left: 1.1rem;
  margin: 0;
  line-height: 2;
  font-size: 1rem;
}
.p-block ul li, .p-card-icon ul li, .p-kpi-card ul li,
.p-block ol li,
.p-card-icon ol li,
.p-kpi-card ol li {
  margin-bottom: 0.15rem;
}

.p-sec--alt .p-block:not(.p-block--muted):not(.p-block--highlight), .p-sec--alt .p-card-icon:not(.p-block--muted):not(.p-block--highlight), .p-sec--alt .p-kpi-card:not(.p-block--muted):not(.p-block--highlight) {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.p-sec--alt .p-block:not(.p-block--muted):not(.p-block--highlight):hover, .p-sec--alt .p-card-icon:not(.p-block--muted):not(.p-block--highlight):hover, .p-sec--alt .p-kpi-card:not(.p-block--muted):not(.p-block--highlight):hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.p-kpi-card {
  border-left: 3px solid #ddd;
}
.p-kpi-card--primary {
  border-left-color: #0f0f0f;
}

.p-card-icon {
  text-align: center;
  padding-top: 2.25rem;
}
.p-card-icon > i {
  font-size: 2.2rem;
  opacity: 0.12;
  display: block;
  margin-bottom: 1rem;
}
.p-card-icon h3 {
  justify-content: center;
  border: none;
  font-size: 1rem;
  padding-bottom: 0.75rem;
}
.p-card-icon h3 i {
  display: none;
}
.p-card-icon ul {
  text-align: left;
}

.p-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.p-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
  text-align: center;
  min-width: 130px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.25s;
}
.p-flow__step:hover {
  transform: translateY(-2px);
}
.p-flow__step i {
  font-size: 1.75rem;
  opacity: 0.2;
}
.p-flow__step span {
  font-weight: 600;
  font-size: 0.85rem;
}
.p-flow__step span small {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  opacity: 0.5;
  margin-top: 0.2rem;
}
.p-flow__step--accent {
  background: linear-gradient(135deg, #0f0f0f, #1a1a2e);
  color: #fff;
  border-color: transparent;
}
.p-flow__step--accent i {
  opacity: 0.55;
}
.p-flow__arrow {
  font-size: 1.1rem;
  opacity: 0.15;
}
@media screen and (max-width: 768px) {
  .p-flow__arrow {
    transform: rotate(90deg);
  }
}

.p-budget {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
}
.p-budget:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 20px 56px rgba(0, 0, 0, 0.1);
}
.p-budget__head {
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.p-budget__head > i {
  font-size: 1.3rem;
  opacity: 0.35;
}
.p-budget__price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.p-budget__price small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.5;
  letter-spacing: 0.02em;
}
.p-budget__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  opacity: 0.55;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.p-budget__speed {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  color: #555;
  margin-bottom: 1.25rem;
}
.p-budget__speed i {
  font-size: 0.9rem;
  opacity: 0.5;
}
.p-budget__body {
  background: #fff;
  padding: 1.75rem;
  flex: 1;
  line-height: 1.9;
}
.p-budget__body h3 {
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: #333;
  letter-spacing: 0.02em;
}
.p-budget__body h3 + ul {
  margin-bottom: 1.25rem;
}
.p-budget__body ul {
  padding-left: 1.1rem;
  margin: 0 0 0.5rem;
  font-size: 1rem;
}
.p-budget[data-tier=light] .p-budget__head {
  background: linear-gradient(135deg, #6c757d, #8b95a0);
}
.p-budget[data-tier=mid] .p-budget__head {
  background: linear-gradient(135deg, #343a40, #495057);
}
.p-budget[data-tier=heavy] .p-budget__head {
  background: linear-gradient(135deg, #0a0a0a, #1a1a2e 50%, #16213e);
}

.p-conclusion-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
  text-align: center;
  height: 100%;
  transition: transform 0.3s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-conclusion-card:hover {
  transform: translateY(-3px);
}
.p-conclusion-card__badge {
  display: inline-block;
  background: #6c757d;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.p-conclusion-card__badge--mid {
  background: #343a40;
}
.p-conclusion-card__badge--heavy {
  background: #0f0f0f;
}
.p-conclusion-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.p-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
}
.p-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 300;
}
.p-checklist li:last-child {
  border-bottom: none;
}
.p-checklist__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
}

.p-roadmap {
  position: relative;
  padding-left: 2rem;
}
.p-roadmap::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.08);
}
.p-roadmap__item {
  position: relative;
  padding-bottom: 2.5rem;
}
.p-roadmap__item:last-child {
  padding-bottom: 0;
}
.p-roadmap__item--accent .p-roadmap__marker {
  background: #0f0f0f;
  border-color: #0f0f0f;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}
.p-roadmap__marker {
  position: absolute;
  left: calc(-2rem + 2px);
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ccc;
  z-index: 1;
}
.p-roadmap__content {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
}
.p-roadmap__content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.25rem 0 0.35rem;
}
.p-roadmap__content p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.55);
}
.p-roadmap__date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #999;
}

@media (min-width: 769px) {
  .p-roadmap {
    display: flex;
    gap: 1rem;
    padding-left: 0;
  }
  .p-roadmap::before {
    display: none;
  }
  .p-roadmap__item {
    flex: 1;
    padding-bottom: 0;
  }
  .p-roadmap__marker {
    position: static;
    margin: 0 auto 0.75rem;
  }
  .p-roadmap__content {
    text-align: center;
  }
}
.pnav__menu a.is-active {
  background: rgba(0, 0, 0, 0.06);
  color: #0f0f0f;
}

.pnav-sidebar__list a.is-active {
  background: #fafafa;
  font-weight: 600;
}
.pnav-sidebar__list a.is-active i {
  opacity: 0.6;
}

.p-note {
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

body.slug-jmz_ad_260319 .header {
  display: none !important;
}
body.slug-jmz_ad_260319 footer {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .p-hero__glow {
    animation: none !important;
  }
  .p-hero__scroll {
    animation: none;
  }
}
#endripws .ew-point,
#endripws .ew-timeline__block,
#endripws .ew-flow__step,
#endripws .ew-mechanism-point,
#endripws .ew-episode,
#endripws .ew-vision-item,
#endripws .ew-firststep-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#endripws .ew-point.ew-visible,
#endripws .ew-timeline__block.ew-visible,
#endripws .ew-flow__step.ew-visible,
#endripws .ew-mechanism-point.ew-visible,
#endripws .ew-episode.ew-visible,
#endripws .ew-vision-item.ew-visible,
#endripws .ew-firststep-item.ew-visible {
  opacity: 1;
  transform: translateY(0);
}

.ew-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 576px) {
  .ew-container {
    padding: 0 16px;
  }
}

.ew-fv {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d1117;
}
.ew-fv__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(74, 108, 247, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 50% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  animation: ew-bg-shift 12s ease-in-out infinite alternate;
}
.ew-fv__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
}
@media screen and (max-width: 576px) {
  .ew-fv__inner {
    padding: 32px 16px;
  }
}
.ew-fv__label {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b8cff;
  margin-bottom: 24px;
  padding: 6px 20px;
  border-radius: 100px;
}
.ew-fv__title {
  font-size: 2rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 576px) {
  .ew-fv__title {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
.ew-fv__sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 576px) {
  .ew-fv__sub {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.ew-fv__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: color 0.3s;
}
.ew-fv__scroll:hover {
  color: rgba(255, 255, 255, 0.7);
}
.ew-fv__scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  animation: ew-scroll-line 1.8s ease-in-out infinite;
}

@keyframes ew-bg-shift {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
@keyframes ew-scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.ew-section {
  padding: 96px 0;
  background: #fafbfc;
}
@media screen and (max-width: 576px) {
  .ew-section {
    padding: 64px 0;
  }
}
.ew-section--dark {
  background: #0d1117;
  color: #ffffff;
}
.ew-section--dark .ew-section__title {
  color: #ffffff;
}
.ew-section--dark .ew-section__en {
  color: rgba(255, 255, 255, 0.3);
}
.ew-section--dark .ew-section__num {
  color: #6b8cff;
}
.ew-section--dark .ew-section__lead {
  color: rgba(255, 255, 255, 0.8);
}
.ew-section--accent {
  background: #f0f4ff;
}
.ew-section--points {
  background: #0d1117;
  padding: 64px 0;
}
@media screen and (max-width: 576px) {
  .ew-section--points {
    padding: 48px 0;
  }
}
.ew-section--firststep {
  background: #fafbfc;
  padding: 80px 0 96px;
}
@media screen and (max-width: 576px) {
  .ew-section--firststep {
    padding: 56px 0 64px;
  }
}
.ew-section__head {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 576px) {
  .ew-section__head {
    margin-bottom: 40px;
  }
}
.ew-section__num {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #4a6cf7;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
}
.ew-section__title {
  font-size: 1.75rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 576px) {
  .ew-section__title {
    font-size: 1.375rem;
  }
}
.ew-section__en {
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #718096;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.ew-section__lead {
  text-align: center;
  font-size: 1.125rem;
  color: #2d3748;
  line-height: 1.9;
  margin-bottom: 48px;
}
@media screen and (max-width: 576px) {
  .ew-section__lead {
    font-size: 1rem;
    margin-bottom: 36px;
  }
}

.ew-highlight {
  color: #4a6cf7;
  font-weight: 600;
}

#endripws .ew-section--dark .ew-highlight,
#endripws .ew-section--points .ew-highlight {
  color: #6b8cff;
}

.ew-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}

.ew-point {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
@media screen and (max-width: 576px) {
  .ew-point {
    gap: 16px;
    padding: 20px;
  }
}
.ew-point__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #4a6cf7;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
@media screen and (max-width: 576px) {
  .ew-point__num {
    width: 36px;
    height: 36px;
  }
}
.ew-point p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}
.ew-point p strong {
  color: #ffffff;
}

.ew-timeline {
  position: relative;
  padding-left: 32px;
  max-width: 680px;
  margin: 0 auto;
}
.ew-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #4a6cf7, rgba(74, 108, 247, 0.2));
}
@media screen and (max-width: 576px) {
  .ew-timeline {
    padding-left: 24px;
  }
  .ew-timeline::before {
    left: 5px;
  }
}

.ew-timeline__block {
  position: relative;
  margin-bottom: 48px;
}
.ew-timeline__block:last-child {
  margin-bottom: 0;
}

.ew-timeline__marker {
  position: absolute;
  left: -32px;
  top: 0;
  width: 16px;
  height: 16px;
  background: #4a6cf7;
  border-radius: 50%;
  border: 3px solid #fafbfc;
}
@media screen and (max-width: 576px) {
  .ew-timeline__marker {
    left: -24px;
    width: 12px;
    height: 12px;
  }
}

.ew-timeline__phase {
  position: absolute;
  left: 24px;
  top: -2px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #4a6cf7;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 576px) {
  .ew-timeline__phase {
    left: 18px;
  }
}

.ew-timeline__content {
  padding-top: 28px;
}
.ew-timeline__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 14px;
}
.ew-timeline__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ew-timeline__content ul li {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  color: #718096;
  line-height: 1.7;
  margin-bottom: 8px;
}
.ew-timeline__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e2e8f0;
}

.ew-timeline__sub {
  margin-top: 20px;
  padding: 20px 24px;
  background: #ffffff;
  border-left: 3px solid #4a6cf7;
  border-radius: 0 12px 12px 0;
}
.ew-timeline__sub h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ew-timeline__sub h4 i {
  color: #4a6cf7;
}
.ew-timeline__sub p {
  font-size: 1rem;
  color: #718096;
  line-height: 1.8;
}
.ew-timeline__sub p strong {
  color: #2d3748;
}

.ew-script-inline {
  max-width: 680px;
  margin: 56px auto 0;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
@media screen and (max-width: 576px) {
  .ew-script-inline {
    padding: 24px 20px;
    margin-top: 40px;
  }
}
.ew-script-inline__head {
  text-align: center;
}
.ew-script-inline__theme {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 16px;
}
.ew-script-inline__theme span {
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4a6cf7;
  padding: 4px 12px;
  border: 1px solid #4a6cf7;
  border-radius: 100px;
}
.ew-script-inline__desc {
  font-size: 1rem;
  color: #718096;
  line-height: 1.8;
}
.ew-script-inline__desc strong {
  color: #2d3748;
}

.ew-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
}

.ew-flow__step {
  text-align: center;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
}
.ew-flow__step--highlight {
  background: #4a6cf7;
  border-color: #4a6cf7;
}
.ew-flow__step--highlight .ew-flow__icon {
  color: #ffffff;
}
.ew-flow__step--highlight p {
  color: #ffffff;
  font-weight: 700;
}
.ew-flow__step p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin: 0;
}

.ew-flow__icon {
  font-size: 2rem;
  color: #6b8cff;
  margin-bottom: 8px;
  line-height: 1;
}

.ew-flow__arrow {
  font-size: 1.75rem;
  color: #6b8cff;
  padding: 8px 0;
}

.ew-mechanism-note {
  max-width: 600px;
  margin: 0 auto;
}

.ew-mechanism-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ew-mechanism-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ew-mechanism-point i {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ew-mechanism-point i.ti-x {
  color: #fc8181;
}
.ew-mechanism-point i.ti-circle-check {
  color: #6b8cff;
}
.ew-mechanism-point p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}
.ew-mechanism-point p strong {
  color: #6b8cff;
}

.ew-logline {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ew-logline p {
  font-size: 1.1875rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  color: #2d3748;
  line-height: 2.2;
  margin-bottom: 8px;
}
@media screen and (max-width: 576px) {
  .ew-logline p {
    font-size: 1.0625rem;
    line-height: 2;
  }
}
.ew-logline p:last-child {
  margin-bottom: 0;
}

.ew-episodes {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ew-episode {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.ew-episode__num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  background: #4a6cf7;
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 576px) {
  .ew-episode__num {
    min-width: 60px;
    font-size: 0.8125rem;
  }
}
.ew-episode__body {
  padding: 20px 24px;
  flex: 1;
}
@media screen and (max-width: 576px) {
  .ew-episode__body {
    padding: 16px;
  }
}
.ew-episode__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 6px;
}
.ew-episode__body p {
  font-size: 1rem;
  color: #718096;
  line-height: 1.7;
  margin: 0;
}

.ew-vision-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ew-vision-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
@media screen and (max-width: 576px) {
  .ew-vision-item {
    gap: 14px;
    padding: 20px;
  }
}
.ew-vision-item i {
  color: #6b8cff;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ew-vision-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}
.ew-vision-item p strong {
  color: #ffffff;
}

.ew-firststep-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ew-firststep-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
@media screen and (max-width: 576px) {
  .ew-firststep-item {
    gap: 16px;
    padding: 20px;
  }
}
.ew-firststep-item__step {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: #4a6cf7;
  padding: 6px 14px;
  border-radius: 100px;
}
.ew-firststep-item p {
  font-size: 1.0625rem;
  color: #2d3748;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .ew-firststep-item p {
    font-size: 1rem;
  }
}

#endripws {
  margin-top: -12px;
}
#endripws h1, #endripws h2, #endripws h3, #endripws h4, #endripws p, #endripws ul, #endripws li {
  margin-top: 0;
}
#endripws * {
  box-sizing: border-box;
}

body.slug-monthly,
body.slug-monthly_shin_kikaku,
body.slug-teiki_koudoku,
body.slug-weekly {
  background: #fff !important;
  color: #0f0f0f;
  font-family: -apple-system, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.85;
}
body.slug-monthly #site-loader,
body.slug-monthly_shin_kikaku #site-loader,
body.slug-teiki_koudoku #site-loader,
body.slug-weekly #site-loader {
  background: #fff;
}
body.slug-monthly .header.bg-light,
body.slug-monthly_shin_kikaku .header.bg-light,
body.slug-teiki_koudoku .header.bg-light,
body.slug-weekly .header.bg-light {
  background: transparent !important;
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
body.slug-monthly .header.bg-light .header-logo img,
body.slug-monthly_shin_kikaku .header.bg-light .header-logo img,
body.slug-teiki_koudoku .header.bg-light .header-logo img,
body.slug-weekly .header.bg-light .header-logo img {
  filter: invert(1) brightness(2);
}
body.slug-monthly footer,
body.slug-monthly_shin_kikaku footer,
body.slug-teiki_koudoku footer,
body.slug-weekly footer {
  color: #999;
}
body.slug-monthly footer p,
body.slug-monthly_shin_kikaku footer p,
body.slug-teiki_koudoku footer p,
body.slug-weekly footer p {
  color: #999;
}
body.slug-monthly footer a,
body.slug-monthly_shin_kikaku footer a,
body.slug-teiki_koudoku footer a,
body.slug-weekly footer a {
  color: #999;
}
body.slug-monthly a,
body.slug-monthly_shin_kikaku a,
body.slug-teiki_koudoku a,
body.slug-weekly a {
  color: #0f0f0f;
  text-decoration: none;
}
body.slug-monthly a:hover,
body.slug-monthly_shin_kikaku a:hover,
body.slug-teiki_koudoku a:hover,
body.slug-weekly a:hover {
  opacity: 0.7;
}

.monthly-shin {
  display: block;
  width: 100%;
  overflow-x: hidden;
}
.monthly-shin .ms-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-inner {
    padding: 0 20px;
  }
}
.monthly-shin .ms-section {
  padding: 160px 0;
  border-top: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-section {
    padding: 112px 0;
  }
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-section {
    padding: 88px 0;
  }
}
.monthly-shin .ms-section:first-of-type {
  border-top: 0;
}
.monthly-shin .ms-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 24px;
  text-align: center;
}
.monthly-shin .ms-h2 {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  line-height: 1.35;
  margin: 0 0 48px;
  letter-spacing: 0.04em;
  text-align: center;
}
.monthly-shin .ms-h3 {
  font-family: -apple-system, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.5;
  margin: 0 0 16px;
  letter-spacing: 0.06em;
}
.monthly-shin .ms-lead {
  font-size: clamp(0.95rem, 1.15vw, 1.0625rem);
  line-height: 2;
  max-width: 680px;
  margin-inline: auto;
  color: #0f0f0f;
}
.monthly-shin .ms-lead + .ms-lead {
  margin-top: 1.5em;
}
.monthly-shin .ms-note {
  font-size: 0.8125rem;
  color: #999;
  line-height: 1.8;
}

.monthly-shin .ms-hero {
  position: relative;
  min-height: 100svh;
  padding: 120px 0 80px;
  border-top: 0;
  background: #fff;
}
.monthly-shin .ms-hero .ms-hero__logo {
  width: 280px;
  height: auto;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-hero .ms-hero__logo {
    width: 100%;
    max-width: 220px;
    margin-bottom: 2rem;
  }
}
.monthly-shin .ms-hero .ms-hero__title {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 6.4vw, 5.5rem);
  line-height: 1.4;
  letter-spacing: 8px;
}

.monthly-shin .ms-intro .ms-intro__en {
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.18em;
  color: #0f0f0f;
  opacity: 0.85;
}
.monthly-shin .ms-intro .ms-intro__chips li {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: #999;
  padding: 6px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
}
.monthly-shin .ms-intro .ms-intro__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  padding: 18px 28px;
  border: 1px solid #0f0f0f;
  color: #0f0f0f;
  text-decoration: none;
}
.monthly-shin .ms-intro .ms-intro__btn::after {
  content: "→";
}
.monthly-shin .ms-intro .ms-intro__btn--primary {
  background: #0f0f0f;
  color: #fff;
}
.monthly-shin .ms-intro .ms-intro__points {
  max-width: 820px;
  border-top: 1px solid #e5e5e5;
}
.monthly-shin .ms-intro .ms-intro__points li {
  border-bottom: 1px solid #e5e5e5;
}
.monthly-shin .ms-intro .ms-intro__num {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-style: italic;
  color: #999;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  min-width: 2.5em;
}

.monthly-shin .ms-about .ms-about__body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-about .ms-about__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.monthly-shin .ms-about .ms-about__col + .ms-about__col {
  border-left: 1px solid #e5e5e5;
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-about .ms-about__col + .ms-about__col {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid #e5e5e5;
    padding-top: 40px;
  }
}

.monthly-shin .ms-format .ms-format__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-format .ms-format__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.monthly-shin .ms-format .ms-format__card {
  border: 1px solid #e5e5e5;
  padding: 48px 32px;
  background: rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-format .ms-format__card {
    padding: 36px 24px;
  }
}
.monthly-shin .ms-format .ms-format__card .ms-format__num {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #999;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.monthly-shin .ms-format .ms-format__card .ms-format__title {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  line-height: 1.5;
}
.monthly-shin .ms-format .ms-format__card .ms-format__text {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #0f0f0f;
}

.monthly-shin .ms-guest .ms-guest__body {
  max-width: 720px;
  margin-inline: auto;
}
.monthly-shin .ms-guest .ms-guest__list {
  margin: 32px 0 32px;
}
.monthly-shin .ms-guest .ms-guest__list li {
  font-size: 0.95rem;
  line-height: 2;
  color: #0f0f0f;
  padding-left: 1.25em;
  position: relative;
}
.monthly-shin .ms-guest .ms-guest__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999;
}

.monthly-shin .ms-backnumber .ms-backnumber__lead {
  max-width: 680px;
  margin-bottom: 64px;
}
.monthly-shin .ms-backnumber .ms-backnumber__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 96px;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-backnumber .ms-backnumber__tags {
    margin-bottom: 72px;
  }
}
.monthly-shin .ms-backnumber .ms-backnumber__tags li {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  padding: 10px 18px;
  border: 1px solid #e5e5e5;
  color: #0f0f0f;
}
.monthly-shin .ms-backnumber .ms-backnumber__terms {
  margin-bottom: 80px;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-backnumber .ms-backnumber__terms {
    margin-bottom: 56px;
  }
}
.monthly-shin .ms-backnumber .ms-backnumber__terms .ms-spec__value strong {
  font-weight: 700;
  color: #0f0f0f;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 1px;
}
.monthly-shin .ms-backnumber .ms-backnumber__sub {
  border-top: 1px solid #e5e5e5;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-backnumber .ms-backnumber__sub {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.monthly-shin .ms-backnumber .ms-backnumber__sub .ms-h3 {
  margin-bottom: 24px;
}
.monthly-shin .ms-backnumber .ms-backnumber__items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.monthly-shin .ms-backnumber .ms-backnumber__items li:first-child {
  border-top: 1px solid #e5e5e5;
}
.monthly-shin .ms-backnumber .ms-backnumber__items li .ms-backnumber__no {
  flex-shrink: 0;
  color: #0f0f0f;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-style: italic;
  letter-spacing: 0.08em;
}
.monthly-shin .ms-backnumber .ms-backnumber__excluded li {
  position: relative;
  padding: 12px 0 12px 1.25em;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #999;
}
.monthly-shin .ms-backnumber .ms-backnumber__excluded li:first-child {
  border-top: 1px solid #e5e5e5;
}
.monthly-shin .ms-backnumber .ms-backnumber__excluded li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999;
}

.monthly-shin .ms-ticket .ms-ticket__lead {
  max-width: 680px;
  margin-bottom: 56px;
}
.monthly-shin .ms-ticket .ms-ticket__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-ticket .ms-ticket__grid {
    grid-template-columns: 1fr;
  }
}
.monthly-shin .ms-ticket .ms-ticket__card {
  border: 1px solid #e5e5e5;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-ticket .ms-ticket__card {
    padding: 32px 24px;
  }
}
.monthly-shin .ms-ticket .ms-ticket__card.is-featured {
  border-color: #0f0f0f;
  background: rgba(0, 0, 0, 0.02);
}
.monthly-shin .ms-ticket .ms-ticket__card .ms-ticket__type {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: #999;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.monthly-shin .ms-ticket .ms-ticket__card .ms-ticket__name {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.monthly-shin .ms-ticket .ms-ticket__card .ms-ticket__price {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.monthly-shin .ms-ticket .ms-ticket__card .ms-ticket__price small {
  font-family: -apple-system, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #999;
  margin-left: 6px;
  letter-spacing: 0.18em;
}
.monthly-shin .ms-ticket .ms-ticket__card .ms-ticket__features {
  margin-top: auto;
}
.monthly-shin .ms-ticket .ms-ticket__card .ms-ticket__features li {
  font-size: 0.875rem;
  line-height: 1.8;
  padding: 10px 0;
  border-top: 1px solid #e5e5e5;
  color: #0f0f0f;
}
.monthly-shin .ms-ticket .ms-ticket__card .ms-ticket__features li:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.monthly-shin .ms-ticket .ms-ticket__note {
  margin: 24px auto 0;
  max-width: 720px;
}

.monthly-shin .ms-subscribe .ms-subscribe__lead {
  max-width: 680px;
  margin-bottom: 56px;
}
.monthly-shin .ms-subscribe .ms-subscribe__wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.monthly-shin .ms-subscribe .ms-subscribe__card {
  border: 1px solid #e5e5e5;
  padding: 40px 40px;
  width: 100%;
  max-width: 720px;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-subscribe .ms-subscribe__card {
    padding: 32px 24px;
  }
}
.monthly-shin .ms-subscribe .ms-subscribe__type {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: #999;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.monthly-shin .ms-subscribe .ms-subscribe__name {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.monthly-shin .ms-subscribe .ms-subscribe__price {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.monthly-shin .ms-subscribe .ms-subscribe__price small {
  font-family: -apple-system, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #999;
  margin-left: 8px;
  letter-spacing: 0.18em;
}
.monthly-shin .ms-subscribe .ms-subscribe__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-subscribe .ms-subscribe__cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.monthly-shin .ms-subscribe .ms-subscribe__col-title {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: #0f0f0f;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e5e5;
}
.monthly-shin .ms-subscribe .ms-subscribe__col-title--muted {
  color: #999;
}
.monthly-shin .ms-subscribe .ms-subscribe__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.monthly-shin .ms-subscribe .ms-subscribe__list li {
  font-size: 0.875rem;
  line-height: 1.8;
  padding: 6px 0;
  color: #0f0f0f;
}
.monthly-shin .ms-subscribe .ms-subscribe__list--muted li {
  color: #999;
}
.monthly-shin .ms-subscribe .ms-subscribe__note {
  margin: 24px auto 0;
  max-width: 720px;
}

.monthly-shin .ms-roadmap .ms-roadmap__lead {
  max-width: 680px;
  margin-bottom: 72px;
}
.monthly-shin .ms-roadmap .ms-roadmap__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-roadmap .ms-roadmap__timeline {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-roadmap .ms-roadmap__timeline {
    grid-template-columns: 1fr;
  }
}
.monthly-shin .ms-roadmap .ms-roadmap__timeline li {
  padding: 32px 24px 32px 0;
  border-right: 1px solid #e5e5e5;
}
.monthly-shin .ms-roadmap .ms-roadmap__timeline li:last-child {
  border-right: 0;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-roadmap .ms-roadmap__timeline li {
    border-right: 1px solid #e5e5e5;
  }
  .monthly-shin .ms-roadmap .ms-roadmap__timeline li:nth-child(2n) {
    border-right: 0;
  }
  .monthly-shin .ms-roadmap .ms-roadmap__timeline li:nth-child(n+3) {
    border-top: 1px solid #e5e5e5;
  }
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-roadmap .ms-roadmap__timeline li {
    border-right: 0;
    border-bottom: 1px solid #e5e5e5;
  }
  .monthly-shin .ms-roadmap .ms-roadmap__timeline li:last-child {
    border-bottom: 0;
  }
}
.monthly-shin .ms-roadmap .ms-roadmap__timeline li .ms-roadmap__when {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #999;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  display: block;
}
.monthly-shin .ms-roadmap .ms-roadmap__timeline li .ms-roadmap__what {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.monthly-shin .ms-partner .ms-partner__lead {
  max-width: 680px;
  margin-bottom: 56px;
}
.monthly-shin .ms-partner .ms-partner__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid #e5e5e5;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-partner .ms-partner__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.monthly-shin .ms-partner .ms-partner__row .ms-partner__label {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}
.monthly-shin .ms-partner .ms-partner__row .ms-partner__amount {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.monthly-shin .ms-partner .ms-partner__row .ms-partner__amount small {
  font-family: -apple-system, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: #999;
  margin-left: 6px;
  letter-spacing: 0.18em;
}
.monthly-shin .ms-partner .ms-partner__row + .ms-lead {
  max-width: none;
  margin: 0 0 20px;
  padding: 24px 0 0;
  font-size: 0.9rem;
  line-height: 1.95;
  color: #999;
  text-align: left;
}
.monthly-shin .ms-partner .ms-partner__list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 28px;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-partner .ms-partner__list {
    grid-template-columns: 1fr;
  }
}
.monthly-shin .ms-partner .ms-partner__list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #0f0f0f;
}
.monthly-shin .ms-partner .ms-partner__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999;
}
.monthly-shin .ms-partner .ms-partner__list + .ms-note {
  margin: 0 0 48px;
}
.monthly-shin .ms-partner .ms-partner__note {
  max-width: 720px;
  margin: 0;
}
.monthly-shin .ms-partner .ms-partner__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding: 18px 28px;
  border: 1px solid #0f0f0f;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: #0f0f0f;
  text-decoration: none;
}
.monthly-shin .ms-partner .ms-partner__cta::after {
  content: "→";
  transition: transform 0.3s ease;
}
.monthly-shin .ms-partner .ms-partner__cta:hover::after {
  transform: translateX(6px);
}

.monthly-shin .ms-profile .ms-profile__photo {
  display: block;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-profile .ms-profile__photo {
    max-width: 200px;
    margin-inline: auto;
  }
}
.monthly-shin .ms-profile .ms-profile__name {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.monthly-shin .ms-profile .ms-profile__name small {
  display: block;
  font-family: -apple-system, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: #999;
  margin-top: 8px;
  font-weight: 400;
}
.monthly-shin .ms-profile .ms-profile__text {
  font-size: 0.95rem;
  line-height: 2;
}

.monthly-shin .ms-contact {
  text-align: left;
}
.monthly-shin .ms-contact .ms-contact__lead {
  max-width: 640px;
  margin-bottom: 56px;
}
.monthly-shin .ms-contact .ms-contact__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-contact .ms-contact__list {
    grid-template-columns: 1fr;
  }
}
.monthly-shin .ms-contact .ms-contact__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px;
  border: 1px solid #0f0f0f;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: #0f0f0f;
}
.monthly-shin .ms-contact .ms-contact__btn::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.monthly-shin .ms-contact .ms-contact__btn:hover::after {
  transform: translateX(6px);
}
.monthly-shin .ms-contact .ms-contact__btn.is-primary {
  background: #0f0f0f;
  color: #fff;
}

.monthly-shin .ms-spec {
  max-width: 720px;
  margin: 0 auto;
}
.monthly-shin .ms-spec .ms-spec__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}
.monthly-shin .ms-spec .ms-spec__row:first-child {
  border-top: 1px solid #e5e5e5;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-spec .ms-spec__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }
}
.monthly-shin .ms-spec .ms-spec__label {
  margin: 0;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  color: #0f0f0f;
}
.monthly-shin .ms-spec .ms-spec__value {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #0f0f0f;
}
.monthly-shin .ms-spec .ms-spec__value small {
  display: block;
  font-size: 0.8rem;
  color: #999;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.monthly-shin .ms-flow-section .ms-flow-section__lead {
  margin-bottom: 64px;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-flow-section .ms-flow-section__lead {
    margin-bottom: 48px;
  }
}

.monthly-shin .ms-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-flow {
    grid-template-columns: 1fr;
  }
}
.monthly-shin .ms-flow .ms-flow__step {
  border: 1px solid #e5e5e5;
  background: rgba(0, 0, 0, 0.02);
  padding: 44px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-flow .ms-flow__step {
    padding: 32px 24px;
  }
}
.monthly-shin .ms-flow .ms-flow__step.is-peak {
  border-color: #0f0f0f;
  background: rgba(0, 0, 0, 0.03);
}
.monthly-shin .ms-flow .ms-flow__num {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 20px;
}
.monthly-shin .ms-flow .ms-flow__title {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  letter-spacing: 0.08em;
  margin: 0 0 18px;
}
.monthly-shin .ms-flow .ms-flow__text {
  font-size: 0.9rem;
  line-height: 1.95;
  color: #0f0f0f;
  margin: 0;
}
.monthly-shin .ms-flow .ms-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  color: #999;
}
.monthly-shin .ms-flow .ms-flow__arrow::before {
  content: "→";
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-flow .ms-flow__arrow {
    width: auto;
    height: 52px;
  }
  .monthly-shin .ms-flow .ms-flow__arrow::before {
    content: "↓";
  }
}

.monthly-shin .ms-faq {
  max-width: 760px;
  margin: 0 auto;
}
.monthly-shin .ms-faq .ms-faq__item {
  border-bottom: 1px solid #e5e5e5;
}
.monthly-shin .ms-faq .ms-faq__item:first-child {
  border-top: 1px solid #e5e5e5;
}
.monthly-shin .ms-faq .ms-faq__q {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 40px 24px 0;
  font-family: -apple-system, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #0f0f0f;
  outline: none;
}
.monthly-shin .ms-faq .ms-faq__q::-webkit-details-marker {
  display: none;
}
.monthly-shin .ms-faq .ms-faq__q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  line-height: 1;
  color: #999;
}
.monthly-shin .ms-faq .ms-faq__item[open] .ms-faq__q {
  color: #0f0f0f;
}
.monthly-shin .ms-faq .ms-faq__item[open] .ms-faq__q::after {
  content: "−";
}
.monthly-shin .ms-faq .ms-faq__a {
  padding: 4px 0 28px;
  font-size: 0.9375rem;
  line-height: 2;
  color: #0f0f0f;
  font-weight: normal;
}

body.slug-monthly_shin_kikaku {
  font-weight: 400;
}
body.slug-monthly_shin_kikaku .ms-h3 {
  font-weight: 600;
}
body.slug-monthly_shin_kikaku .ms-note {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: left;
}
body.slug-monthly_shin_kikaku .ms-ticket__note {
  margin-top: 48px;
}

.monthly-shin .ms-cta {
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}
.monthly-shin .ms-cta .ms-cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 36px;
  font-family: -apple-system, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: #0f0f0f;
  border: 1px solid #0f0f0f;
  border-radius: 999px;
}
.monthly-shin .ms-cta .ms-cta__btn small {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.monthly-shin .ms-cta .ms-cta__btn:disabled, .monthly-shin .ms-cta .ms-cta__btn[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.monthly-shin .ms-cta .ms-cta__btn--lg {
  padding: 0.5rem;
  font-size: 1.0625rem;
}
.monthly-shin .ms-cta .ms-cta__note {
  margin: 18px 0 0;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #999;
  text-align: center;
}
.monthly-shin .ms-hero .ms-cta {
  margin-top: 48px;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-hero .ms-cta {
    margin-top: 36px;
  }
}
.monthly-shin .ms-plan {
  text-align: center;
}
.monthly-shin .ms-plan__copy {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3.25rem);
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin: 0 0 48px;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-plan__copy {
    letter-spacing: 0.04em;
    margin-bottom: 36px;
  }
}
.monthly-shin .ms-plan__body {
  max-width: 640px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-plan__body {
    margin-bottom: 64px;
  }
}
.monthly-shin .ms-plan__benefits .ms-eyebrow {
  margin-bottom: 40px;
}
.monthly-shin .ms-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-perks {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-perks {
    grid-template-columns: 1fr;
  }
}
.monthly-shin .ms-perks__item {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  background: rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.monthly-shin .ms-perks__item:hover {
  border-color: rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}
.monthly-shin .ms-perks__item--hero {
  grid-row: span 2;
  border-color: #0f0f0f;
  background: rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-perks__item--hero {
    grid-column: span 2;
    grid-row: auto;
  }
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-perks__item--hero {
    grid-column: auto;
  }
}
.monthly-shin .ms-perks__item--hero .ms-perks__media {
  flex: 1 1 auto;
  aspect-ratio: auto;
  min-height: 280px;
}
@media screen and (max-width: 768px) {
  .monthly-shin .ms-perks__item--hero .ms-perks__media {
    aspect-ratio: 16/10;
    min-height: 0;
  }
}
.monthly-shin .ms-perks__item--hero .ms-perks__label {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  letter-spacing: 0.06em;
}
.monthly-shin .ms-perks__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
}
.monthly-shin .ms-perks__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.monthly-shin .ms-perks__body {
  padding: 20px 22px;
}
.monthly-shin .ms-perks__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #0f0f0f;
}
.monthly-shin .ms-perks__desc {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #999;
}
.monthly-shin .ms-perks__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: #fff;
  background: #0f0f0f;
  padding: 5px 12px;
}
.monthly-shin .ms-perks__sub {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-perks__sub {
    grid-template-columns: 1fr;
  }
}
.monthly-shin .ms-perks__sub li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  border: 1px solid #e5e5e5;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.monthly-shin .ms-perks__sub li::before {
  content: "+";
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.25);
}
.monthly-shin .ms-perks-section__note {
  margin-top: 40px;
  text-align: center;
}
.monthly-shin .ms-join__copy {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0 0 40px;
}

.monthly-shin .ms-weekly .ms-weekly__card {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid #e5e5e5;
  background: rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 576px) {
  .monthly-shin .ms-weekly .ms-weekly__card {
    padding: 36px 24px;
  }
}
.monthly-shin .ms-weekly .ms-weekly__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 18px 28px;
  border: 1px solid #0f0f0f;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: #0f0f0f;
  text-decoration: none;
}
.monthly-shin .ms-weekly .ms-weekly__btn::after {
  content: "→";
  transition: transform 0.3s ease;
}
.monthly-shin .ms-weekly .ms-weekly__btn:hover::after {
  transform: translateX(6px);
}

.monthly-shin .ms-hero,
.monthly-shin .ms-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.monthly-shin .ms-hero.is-visible,
.monthly-shin .ms-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .monthly-shin .ms-hero,
  .monthly-shin .ms-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.mainTitle {
  font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  text-align: center;
}

.subtitle {
  margin-top: 16px;
  text-align: center;
}

.loader {
  position: fixed;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 999999;
}
.loader .spinner {
  animation: spin 2s ease-in-out infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

:root {
  --bs-primary: #212121; /* 好きな色コードに */
  --bs-primary-rgb: 33, 33, 33;
}

footer {
  margin-top: 80px;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
footer .cr {
  text-align: center;
}

@media (min-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }
}
body.slug-exprp .header, body.slug-webrenove .header {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
body.slug-exprp.exprp-header-visible .header, body.slug-webrenove.exprp-header-visible .header {
  transform: none;
  opacity: 1;
}

.df-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

#plan-nav.nav-floater {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
#plan-nav.nav-floater.is-visible {
  transform: translateY(0);
}
#plan-nav.nav-floater .wrap {
  min-height: 64px;
}
#plan-nav.nav-floater::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
#plan-nav.nav-floater.is-open::after {
  opacity: 1;
  pointer-events: auto;
}
#plan-nav.nav-floater [data-role=plan-menu] {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 76px;
  margin: 0;
  padding: 12px 16px;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#plan-nav.nav-floater [data-role=plan-menu] li {
  margin: 0;
  padding: 0;
}
#plan-nav.nav-floater [data-role=plan-menu] li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
#plan-nav.nav-floater [data-role=plan-menu] a {
  display: block;
  padding: 12px 6px;
  text-decoration: none;
}
#plan-nav.nav-floater.is-open [data-role=plan-menu] {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

@media (min-width: 992px) {
  #plan-nav.nav-floater::after {
    display: none;
  }
  #plan-nav.nav-floater .wrap {
    gap: 24px;
  }
  #plan-nav.nav-floater [data-role=plan-menu-toggle] {
    display: none;
  }
  #plan-nav.nav-floater [data-role=plan-menu] {
    position: static;
    inset: auto;
    display: flex;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  #plan-nav.nav-floater [data-role=plan-menu] li + li {
    border-top: 0;
  }
  #plan-nav.nav-floater [data-role=plan-menu] a {
    padding: 8px 0;
  }
}
.plan .title {
  letter-spacing: 0.02em;
}

/* 上から16px→0へ＆不透明に（-16px→0） */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 1s ease-out 0.5s forwards;
}

.fade-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 1s ease-out 2s forwards;
}

/* 1〜8個目まで段階ディレイ（必要数だけ伸ばす） */
.fade-stagger > *:nth-child(1) {
  animation-delay: 1s;
}

.fade-stagger > *:nth-child(2) {
  animation-delay: 1.2s;
}

.fade-stagger > *:nth-child(3) {
  animation-delay: 1.4s;
}

.fade-stagger > *:nth-child(4) {
  animation-delay: 1.6s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 安全領域（iOS等） */
:root {
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* 100vhの代わりにsvhで高さ確保（URLバーに縮まない） */
.min-svh-100 {
  min-height: 100svh;
}

/* ヒーローの下メニュー：安全に下寄せ */
#plan-logo {
  position: relative;
  /* 下メニューぶんの余白も確保（被らないように） */
  padding-bottom: calc(56px + var(--safe-bottom));
}

#plan-logo .hero-menu {
  position: absolute;
  left: 0;
  right: 0;
  /* URLバーやホームインジケータに隠れない */
  bottom: max(16px, var(--safe-bottom));
}

/* ついでにフッターナビも安全に（必要なら） */
.kv-menu--ue {
  --menu-pos: 25svh; /* ここを70〜85svhで微調整 */
  top: var(--menu-pos);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.kv-menu--shita {
  --menu-pos: 70svh; /* ここを70〜85svhで微調整 */
  top: var(--menu-pos);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.mont {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

#index section {
  margin-bottom: 5rem;
}
#index section:last-of-type {
  margin-bottom: 0;
}
#index .kv {
  height: 100svh;
  width: 100%;
  position: relative;
}
#index .kv .kv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
}
#index .kv .wrap {
  z-index: 1;
}
#index .kv .wrap .inner .img img {
  width: 100%;
  height: auto;
  max-width: 80px;
}
#index .kv .wrap .inner h1 {
  writing-mode: vertical-rl;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
#index .exprp-slider .slick-track {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
#index .exprp-slider img {
  max-height: 40px;
  filter: grayscale(100%);
}
#index .partners img {
  filter: grayscale(100%);
}
#index .kime::before, #index .kime::after {
  content: "";
  width: 16px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  z-index: 0;
}
#index .kime::before {
  background-image: url(../images/kime-l.webp);
}
#index .kime::after {
  background-image: url(../images/kime-r.webp);
}
#index h2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 2rem;
  margin-top: 16px;
  text-align: center;
  margin-bottom: 1rem;
}
#index .soft img {
  width: 48px;
  height: auto;
}
#index #portfolio .wrap .area {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.5rem;
}
#index #portfolio .wrap .area .content {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 0;
}
#index #portfolio .wrap .area .content .img img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  aspect-ratio: 4/3;
  object-position: top center;
}
#index #portfolio .wrap .area .content .title {
  font-weight: bold;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}
#index #portfolio .wrap .area .content .title a {
  text-decoration: none;
}

.wpcf7 .wrap {
  margin-bottom: 1.5rem;
}
.wpcf7 .wrap label {
  margin-bottom: 4px;
  font-size: 0.875rem;
  font-weight: bold;
}
.wpcf7 .wrap .inner input, .wpcf7 .wrap .inner textarea {
  background-color: white;
  border: unset;
  padding: 0.875rem;
}
.wpcf7 .wrap .inner select {
  width: 100%;
  border: unset;
  padding: 0.875rem;
}
.wpcf7 .wrap .inner label {
  font-size: 0.875rem;
  font-weight: normal;
}
.wpcf7 .wpcf7-submit {
  background-color: black;
  border: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: white;
  border-radius: 0.25rem;
  padding: 4px;
}

.member {
  margin-bottom: 72px;
}
.member .header.wrap h2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.member .main-contents .box .small {
  font-size: clamp(0.8rem, 0.7346938776rem + 0.2040816327vw, 1rem);
}
.member .main-contents .box .movie {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.member .main-contents .box .movie iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.member .shindra-media-placeholder {
  background: #fafafa;
  border: 1px solid #e5e5e5;
}
.member .shindra-media-placeholder .placeholder-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ccc;
}

.member-navigation {
  min-height: 56px;
  padding: 8px;
  background-color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 99999;
}
.member-navigation li a img {
  width: 100%;
  max-width: 30px;
}
.member-navigation li a i {
  font-size: clamp(1.6rem, 1.5346938776rem + 0.2040816327vw, 1.8rem);
}

.join .top-image img {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .join .box {
    margin-top: 40px;
  }
}
.join .box .title {
  font-weight: bold;
  margin-bottom: 4px;
}
.join .box p {
  font-size: clamp(0.8rem, 0.7346938776rem + 0.2040816327vw, 1rem);
}
.join .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.join .last {
  height: 400px;
  width: 100%;
}
.join .last .caution {
  font-size: clamp(0.8rem, 0.7346938776rem + 0.2040816327vw, 1rem);
}

.advertiser-page .main-contents-title {
  display: flex;
  align-items: center;
}
.advertiser-page .main-contents-title::after {
  content: "";
  height: 1px;
  width: 80px;
  background-color: black;
  margin-left: 16px;
}
.advertiser-page .main-area .panel img {
  max-width: 500px;
}
@media screen and (max-width: 576px) {
  .advertiser-page .main-area .panel img {
    max-width: 100%;
  }
}
.advertiser-page .main-area {
  /* 枠全体：高さアニメ */
}
.advertiser-page .main-area .swap {
  --dur: .35s;
}
.advertiser-page .main-area .swap .swap-panels {
  position: relative;
  overflow: hidden;
  transition: height var(--dur) ease;
  will-change: height;
}
.advertiser-page .main-area {
  /* パネル重ね・クロスフェード */
}
.advertiser-page .main-area .swap .panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.advertiser-page .main-area .swap .panel.is-active {
  position: relative;
  opacity: 1;
  transform: none;
}
.advertiser-page .main-area {
  /* 本音側の見た目 */
}
.advertiser-page .main-area .honest-box {
  background: #0f0f0f;
  color: #fff;
  border-radius: 0.75rem;
}
.advertiser-page .main-area {
  /* 画像の縦横比（任意） */
}
.advertiser-page .main-area .vision .head img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}
.advertiser-page .main-area {
  /* モーション軽減 */
}
@media (prefers-reduced-motion: reduce) {
  .advertiser-page .main-area .swap .swap-panels {
    transition: none;
  }
  .advertiser-page .main-area .swap .panel {
    transition: none;
  }
}
.advertiser-page .history .img img {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .advertiser-page .history .img img {
    max-width: 50%;
  }
}
.advertiser-page .return .grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .advertiser-page .return .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .advertiser-page .return .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.advertiser-page .return .card img {
  width: 100%;
  height: auto;
  display: block;
}
.advertiser-page .return .card .contents {
  padding: 0.75rem 1rem;
  flex: 1 1 auto;
}
.advertiser-page .return .card .contents ul {
  margin: 0;
  padding-left: 1.2rem;
}
.advertiser-page .return .card .contents li {
  margin: 0.3rem 0;
}
.advertiser-page .return .card .action {
  padding: 0.75rem 1rem;
  border-top: 1px solid #f1f3f5;
}
.advertiser-page .next .wrap {
  background-image: url("../images/00/pe-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 50vh;
}
.advertiser-page .next .wrap img.logo {
  width: 300px;
}

/* 矢印のやわらかフェード＋上下フロート */
.blink, .blink-up {
  pointer-events: none;
}

/* 下矢印バージョン */
.blink i {
  display: inline-block;
  animation: scroll-blink 2.2s ease-in-out infinite;
}

@keyframes scroll-blink {
  0% {
    opacity: 1;
    transform: translateY(-8px);
  }
  80% {
    opacity: 0;
    transform: translateY(0);
  }
  85% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(-8px);
  }
}
/* 上矢印バージョン */
.blink-up i {
  display: inline-block;
  animation: scroll-blink-up 2.2s ease-in-out infinite;
}

@keyframes scroll-blink-up {
  0% {
    opacity: 1;
    transform: translateY(8px);
  }
  80% {
    opacity: 0;
    transform: translateY(0);
  }
  85% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(8px);
  }
}
/* 動きが苦手な人向け：OS設定でアニメ軽減なら静止 */
@media (prefers-reduced-motion: reduce) {
  .blink i, .blink-up i {
    animation: none;
  }
}
.exprp .kv {
  height: 100svh;
  width: 100%;
  position: relative;
}
.exprp .kv .kv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
}
.exprp .kv .wrap {
  z-index: 1;
}
.exprp .kv .wrap .inner .img img {
  width: 100%;
  height: auto;
  max-width: 80px;
}
.exprp .kv .wrap .inner h1 {
  writing-mode: vertical-rl;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.exprp .exprp-slider .slick-track {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.exprp .exprp-slider img {
  max-height: 40px;
  filter: grayscale(100%);
}
.exprp .partners img {
  filter: grayscale(100%);
}
.exprp .kime::before, .exprp .kime::after {
  content: "";
  width: 16px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  z-index: 0;
}
.exprp .kime::before {
  background-image: url(../images/kime-l.webp);
}
.exprp .kime::after {
  background-image: url(../images/kime-r.webp);
}

#webrenove {
  /* ウェブリノベ CF7 */
}
#webrenove .wrn-form {
  max-width: 720px;
  margin: 0 auto;
}
#webrenove .wrn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  #webrenove .wrn-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
#webrenove .wrn-field {
  margin: 0;
}
#webrenove .wrn-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 6px;
}
#webrenove .wrn-input, #webrenove .wrn-textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 16px;
  line-height: 1.4;
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
#webrenove .wrn-textarea {
  min-height: 140px;
  resize: vertical;
}
#webrenove .wrn-input:focus, #webrenove .wrn-textarea:focus {
  border-color: rgba(13, 110, 253, 0.55);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
}
#webrenove .wrn-help {
  margin: 8px 0 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12.5px;
  line-height: 1.5;
}
#webrenove .wrn-radio .wpcf7-list-item {
  margin-right: 12px;
}
#webrenove .wrn-radio input {
  margin-right: 6px;
}
#webrenove .wrn-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin: 8px 0 0;
}
#webrenove .wrn-check input {
  margin-top: 3px;
}
#webrenove .wrn-actions {
  margin-top: 18px;
}
#webrenove .wrn-submit {
  appearance: none;
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  background: #212529;
  color: #fff;
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.22);
  transition: transform 0.05s ease, filter 0.15s ease;
}
#webrenove .wrn-submit:hover {
  filter: brightness(0.98);
}
#webrenove .wrn-submit:active {
  transform: translateY(1px);
}
#webrenove .wrn-note {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
#webrenove {
  /* CF7 メッセージ */
}
#webrenove .wpcf7 form .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 14px;
  padding: 12px 14px;
}
#webrenove .wpcf7-not-valid-tip {
  font-size: 12.5px;
  margin-top: 6px;
}

#postwith .kv {
  height: 100svh;
  width: 100%;
  background: url("../images/postwith/kv.webp") center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  #postwith .kv {
    background: url("../images/postwith/kv_sp.webp") center/cover no-repeat;
  }
}
#postwith .kv .wrap {
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 400px;
}
#postwith .kv .wrap img {
  max-width: 80%;
}

#profile {
  overflow-x: hidden;
}
#profile h1 {
  font-size: 3rem;
  font-weight: bold;
}
#profile h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
#profile .sns a {
  text-decoration: none;
  font-size: 2rem;
}
#profile .sns a img {
  height: 22px;
  margin-left: 4px;
}
#profile .profile-slide img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
#profile .profile-slider-wrap {
  overflow: hidden;
}
#profile .profile-slider-nav {
  margin-top: 12px;
}
#profile .profile-slider-nav .profile-nav-slide {
  padding: 0 6px;
  cursor: pointer;
}
#profile .profile-slider-nav .profile-nav-slide img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}
#profile .profile-slider-nav .profile-nav-slide.is-focus img {
  opacity: 1;
}
#profile .profile-slider-nav .slick-current img {
  opacity: 1;
}
#profile .profile-slider .slick-dots {
  bottom: 12px;
}
#profile .profile-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
#profile .profile-meta dt {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}
#profile .profile-meta dd {
  margin: 0;
  font-size: 0.95rem;
}
#profile .works-row {
  background-color: white;
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#profile .works-row .wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
#profile .works-row .works-card {
  margin-bottom: 3rem;
}
#profile .works-row .works-card:last-of-type {
  margin-bottom: 0;
}
#profile .works-row .works-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
#profile .works-row .works-card h3:after {
  content: "";
  background-color: black;
  height: 1px;
  flex: 1 1 auto;
  min-width: 0;
  display: block;
}
#profile .works-row .works-card li {
  margin-bottom: 1rem;
  line-height: 1.6;
}
#profile .history-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
}
#profile .history-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#profile .history-tab {
  border: none;
  background: #fff;
  padding: 8px 14px;
}
#profile .history-tab.is-active {
  background: #212121;
  color: #fff;
  border-color: #212121;
}
#profile .history-panel {
  display: none;
  border: none;
  background: #fff;
  padding: 16px;
  height: 480px;
  overflow-y: auto;
}
#profile .history-panel.is-active {
  display: block;
}
#profile .shk-contact-section .wrap {
  background-color: white;
}
#profile .shk-contact-section .wrap input, #profile .shk-contact-section .wrap textarea {
  background-color: #f8f9fa;
}
#profile .shk-contact-section input.wpcf7-submit {
  background-color: black !important;
  color: white;
}

#stage h2 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
#stage section {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#stage section:last-of-type {
  margin-bottom: 0;
}
#stage .kv {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/00/pe-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#stage .kv .logo {
  width: 300px;
}
#stage #schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#stage #schedule ul li {
  margin-bottom: 8px;
}
#stage #access iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}

#chappy-lp {
  --chappy-accent: #4F46E5;
  --chappy-accent-light: #E0E7FF;
  --chappy-text: #111;
  --chappy-muted: #555;
  --chappy-radius: 1rem;
  --chappy-shadow: 0 2px 16px rgba(0,0,0,.06);
  color: var(--chappy-text);
  font-family: system-ui, sans-serif;
}
#chappy-lp section {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  #chappy-lp section {
    padding: 4rem 0;
  }
}
#chappy-lp h1 {
  font-weight: 800;
  line-height: 1.3;
}
#chappy-lp h2 {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.4;
}
#chappy-lp h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}
#chappy-lp .accent {
  color: var(--chappy-accent);
}
#chappy-lp .chappy-section-sub {
  color: var(--chappy-muted);
  font-size: 0.95rem;
}
#chappy-lp .chappy-card {
  background: #fff;
  border: none;
  border-radius: var(--chappy-radius);
  box-shadow: var(--chappy-shadow);
  padding: 1.5rem;
}
#chappy-lp .chappy-accent-bg {
  background: white;
}
#chappy-lp .chappy-accent-text {
  color: var(--chappy-accent);
}
#chappy-lp .chappy-btn {
  display: inline-block;
  background: var(--chappy-accent);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
  cursor: pointer;
}
#chappy-lp .chappy-btn:hover {
  opacity: 0.85;
  color: #fff;
}
#chappy-lp .chappy-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--chappy-text);
  border: 2px solid #ddd;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s;
}
#chappy-lp .chappy-btn-outline:hover {
  border-color: var(--chappy-accent);
  color: var(--chappy-accent);
}
#chappy-lp .chappy-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--chappy-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
#chappy-lp .chappy-flow {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  align-items: flex-start;
}
#chappy-lp .chappy-impact-card {
  background: #fff;
  border-radius: var(--chappy-radius);
  box-shadow: var(--chappy-shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
}
#chappy-lp .chappy-impact-icon {
  font-size: 2.5rem;
  color: var(--chappy-accent);
  margin-bottom: 1rem;
}
#chappy-lp .chappy-caution {
  border-left: 4px solid var(--chappy-accent);
  background: var(--chappy-accent-light);
  border-radius: 0 var(--chappy-radius) var(--chappy-radius) 0;
  padding: 1.5rem;
}
#chappy-lp .chappy-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--chappy-radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}
@media (min-width: 768px) {
  #chappy-lp .chappy-hero-img {
    aspect-ratio: 16/9;
  }
}
#chappy-lp .accordion-button:not(.collapsed) {
  background: var(--chappy-accent-light);
  color: var(--chappy-text);
  box-shadow: none;
}
#chappy-lp .accordion-button:focus {
  box-shadow: none;
  border-color: #ddd;
}
#chappy-lp .accordion-item {
  border-color: #eee;
}
#chappy-lp .hero {
  background-image: url(../images/100life/bg.png);
  width: 100%;
  height: 100svh;
}
#chappy-lp .hero::after {
  content: "";
  background-image: url(../images/100life/chappy.png);
  width: 400px;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #chappy-lp .hero::after {
    width: 300px;
    height: 200px;
  }
}
#chappy-lp .hero .text-area {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  color: white;
}
#chappy-lp .hero .text-area .subtitle {
  line-height: 1;
  text-align: left;
}
#chappy-lp .problem ul li > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 2rem 1rem;
}

body.has-site-header {
  padding-top: 56px;
}

.shindra-nav a.shindra-nav__link {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #0f0f0f;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.shindra-nav a.shindra-nav__link:hover {
  opacity: 0.5;
}
.shindra-nav a.shindra-nav__link--cta {
  font-weight: 700;
}

footer.shindra-footer {
  margin-top: 0;
  padding-bottom: 0;
  display: block;
}

#shindra-top .shindra-kv {
  position: relative;
  background: #fff;
  min-height: calc(100vh - 56px);
}
#shindra-top .shindra-kv__logo {
  width: auto;
  height: clamp(32px, 5vw, 56px);
}
#shindra-top .shindra-kv__logo--tate {
  width: clamp(100px, 38vw, 150px);
}
#shindra-top .shindra-kv__copy {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

#about-page, #weekly-page, #seed-page, #volumes-page, #sponsor-page {
  min-height: 60vh;
}

.shindra-eyebrow, #shindra-top .shindra-subscribe .subscribe-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  display: block;
}

#shindra-top .shindra-kv__headline {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0f0f0f;
}
#shindra-top .shindra-kv__sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #666;
  letter-spacing: 0.03em;
  line-height: 1.9;
}
#shindra-top .shindra-section {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
  border-top: 1px solid #e5e5e5;
}
#shindra-top .shindra-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  #shindra-top .shindra-section__inner {
    grid-template-columns: 200px 1fr;
    gap: clamp(2.5rem, 4vw, 5rem);
    align-items: start;
  }
}
#shindra-top .shindra-section__num {
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  display: block;
  margin-bottom: 0.5rem;
}
#shindra-top .shindra-section__title {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: #0f0f0f;
  margin-bottom: 0;
}
#shindra-top .shindra-section__body {
  font-size: 0.9rem;
  line-height: 1.95;
  color: #555;
}
#shindra-top .shindra-media-placeholder {
  background: #fafafa;
  border: 1px solid #e5e5e5;
}
#shindra-top .shindra-media-placeholder .placeholder-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ccc;
}
#shindra-top .shindra-subscribe {
  background: #0f0f0f;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
}
#shindra-top .shindra-subscribe .subscribe-eyebrow {
  color: rgba(255, 255, 255, 0.35);
}
#shindra-top .shindra-subscribe .subscribe-title {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: #fff;
}
#shindra-top .shindra-subscribe .subscribe-body {
  font-size: 0.9rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.55);
}
#shindra-top .shindra-subscribe .subscribe-price {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
#shindra-top .shindra-subscribe .subscribe-period {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}
#shindra-top .shindra-sponsor-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid #e5e5e5;
  gap: 1.5rem;
}
#shindra-top .shindra-sponsor-row:first-child {
  border-top: 1px solid #e5e5e5;
}
#shindra-top .shindra-sponsor-row__name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0f0f0f;
}
#shindra-top .shindra-sponsor-row__price {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1rem;
  color: #888;
  white-space: nowrap;
}
#shindra-top .shindra-news-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
#shindra-top .shindra-news-item:first-child {
  border-top: 1px solid #e5e5e5;
}
#shindra-top .shindra-news-item:last-child {
  border-bottom: none;
}
#shindra-top .shindra-news-item:hover {
  opacity: 0.45;
}
#shindra-top .shindra-news-item__date {
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #999;
  padding-top: 0.15rem;
}
#shindra-top .shindra-news-item__title {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #0f0f0f;
}
#shindra-top .shindra-seed-card {
  border: 1px solid #0f0f0f;
  padding: 1.25rem 1.75rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
}
#shindra-top .shindra-seed-card .seed-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
}
#shindra-top .shindra-seed-card .seed-words {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.1rem;
  color: #0f0f0f;
  letter-spacing: 0.02em;
}

.subscription-page {
  background: #f7f6f2;
}
.subscription-page .subscription-hero {
  min-height: min(880px, 92svh);
  padding: 152px 20px 104px;
  background: #f7f6f2;
}
.subscription-page .subscription-hero__inner {
  width: 100%;
  max-width: 760px;
}
.subscription-page .subscription-hero__mark {
  display: block;
  width: 42px;
  height: auto;
  margin: 0 auto 32px;
}
.subscription-page .subscription-hero__eyebrow,
.subscription-page .subscription-home__eyebrow,
.subscription-page .subscription-stream__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}
.subscription-page .subscription-hero__eyebrow {
  color: #777;
}
.subscription-page .subscription-hero__title,
.subscription-page .subscription-heading,
.subscription-page .subscription-join__copy {
  font-family: -apple-system, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
}
.subscription-page .subscription-hero__title {
  margin: 14px 0 28px;
  font-size: clamp(2.15rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0.045em;
}
.subscription-page .subscription-hero__copy {
  margin: 0 0 20px;
  font-size: clamp(1.15rem, 2.7vw, 1.6rem);
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.035em;
}
.subscription-page .subscription-hero__lead {
  margin: 0;
  font-size: 0.96rem;
  line-height: 2;
  color: #555;
}
.subscription-page .subscription-hero .ms-cta {
  margin-top: 48px;
}
.subscription-page .ms-section {
  background: #fff;
}
.subscription-page .subscription-about {
  background: #f7f6f2;
  text-align: center;
}
.subscription-page .subscription-heading {
  margin: 0 0 56px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.035em;
  text-align: center;
}
.subscription-page .subscription-about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.subscription-page .subscription-about__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 2.05;
}
.subscription-page .subscription-streams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.subscription-page .subscription-stream {
  min-height: 430px;
  padding: 32px 28px 36px;
  border: 1px solid #e5e5e5;
  border-top: 4px solid #0f0f0f;
  background: #fafafa;
}
.subscription-page .subscription-stream h3 {
  min-height: 3.4em;
  margin: 12px 0 28px;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.subscription-page .subscription-stream ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5e5e5;
}
.subscription-page .subscription-stream li {
  position: relative;
  padding: 14px 0 14px 1.3em;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.88rem;
  line-height: 1.7;
}
.subscription-page .subscription-stream li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999;
}
.subscription-page .subscription-stream__number {
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #999;
}
.subscription-page .subscription-stream__eyebrow {
  color: #0f0f0f;
}
.subscription-page .subscription-caution {
  max-width: 820px;
  margin: 48px auto 0;
  padding: 24px 28px;
  border: 1px solid #e5e5e5;
  background: #fff;
}
.subscription-page .subscription-caution p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.9;
  color: #666;
}
.subscription-page .subscription-caution p + p {
  margin-top: 8px;
}
.subscription-page .subscription-home {
  background: #f7f6f2;
}
.subscription-page .subscription-home__panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px;
  color: #fff;
  background: #111;
}
.subscription-page .subscription-home__panel h2 {
  margin: 20px 0 28px;
  font-size: clamp(1.65rem, 3.6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.035em;
}
.subscription-page .subscription-home__panel p {
  max-width: 660px;
  margin: 0;
  font-size: 0.94rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.72);
}
.subscription-page .subscription-home__eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
.subscription-page .subscription-home__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.subscription-page .subscription-home__link::after {
  content: "→";
}
.subscription-page .subscription-join {
  background: #fff;
}
.subscription-page .subscription-join__copy {
  margin: 0 0 44px;
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  font-weight: 800;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .subscription-page .subscription-about__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .subscription-page .subscription-streams {
    grid-template-columns: 1fr;
  }
  .subscription-page .subscription-stream {
    min-height: 0;
  }
  .subscription-page .subscription-stream h3 {
    min-height: 0;
  }
}
@media screen and (max-width: 576px) {
  .subscription-page .subscription-hero {
    min-height: 820px;
    padding: 132px 20px 88px;
  }
  .subscription-page .subscription-hero__title {
    letter-spacing: 0.02em;
  }
  .subscription-page .subscription-hero__lead br {
    display: none;
  }
  .subscription-page .subscription-heading {
    margin-bottom: 40px;
    text-align: left;
  }
  .subscription-page .subscription-about .subscription-heading {
    text-align: center;
  }
  .subscription-page .subscription-stream {
    padding: 28px 22px 30px;
  }
  .subscription-page .subscription-caution {
    padding: 20px;
  }
  .subscription-page .subscription-home__panel {
    padding: 48px 28px;
  }
}

/*# sourceMappingURL=custom.css.map */
