@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400&display=swap');

:root{
  --bg: #111111;
  --fg: #EAEAEA;
  --line: rgba(255,255,255,0.18);
}

html {
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  color: var(--fg);
  line-height: 2;

  background-image: url("../images/top.jpg");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* --- Hamburger Menu --- */
.menu-toggle {
  position: fixed;
  top: 38px;
  right: 42px;
  width: 42px;
  height: 34px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 99999;

  display: flex;
  flex-direction: column;
  justify-content: center;

  pointer-events: auto;
}

.menu-toggle span {
  display: block;
  width: 42px;
  height: 2px;
  margin: 5px 0;
  background: rgba(255,255,255,0.95);
  transition: 0.3s ease;
  pointer-events: none;
}

.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 38vw;
  min-width: 360px;
  max-width: 520px;
  height: 100vh;
  background: rgba(0,0,0,0.94);
  color: #EAEAEA;
  z-index: 100000;

  transform: translateX(100%);
  transition: transform 0.45s ease;

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  padding: 70px 60px;

  pointer-events: auto;
}

.menu-overlay.active {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 34px;
  right: 40px;

  border: none;
  background: transparent;
  color: #EAEAEA;

  font-size: 42px;
  font-family: serif;
  line-height: 1;
  cursor: pointer;

  pointer-events: auto;
}

.side-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;

  pointer-events: auto;
}

.side-menu a {
  color: #EAEAEA;
  text-decoration: none;

  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.4;

  transition: opacity 0.3s ease;

  pointer-events: auto;
}

.side-menu a:hover {
  opacity: 0.55;
}

/* --- Old Nav Hidden --- */
.hero-nav {
  display: none;
}

/* --- Top Right Instagram --- */
.hero-insta{
  position: fixed;
  top: 38px;
  right: 112px;

  width: 42px;
  height: 34px;

  color: rgba(255,255,255,0.95);
  text-shadow: 0 0 8px rgba(0,0,0,0.4);

  transition: 0.3s ease;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: auto;
}

.hero-insta:hover{
  color: #EAEAEA;
}

.hero-insta svg {
  display: block;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

/* --- Hero Center Box --- */
.hero-inner{
  width: 430px;
  height: 430px;
  max-width: 82vw;
  max-height: 82vw;

  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  padding: 48px;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-logo {
  width: 155px;
  max-width: 62%;
  height: auto;
  display: block;
  margin: 0 auto 28px;
  transform: translateY(4px);
}

.hero-inner .button {
  transform: translateY(4px);
}

/* --- Common Text --- */
h1 {
  font-size: 52px;
  letter-spacing: 8px;
  font-weight: 400;
  margin: 0 0 18px;
  line-height: 1.15;
}

h2 {
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 40px;
  opacity: 0.9;
  font-size: 30px;
}

h3 {
  font-weight: 400;
  letter-spacing: 1px;
}

/* --- Concept --- */
.concept-title {
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 2.2;
  margin-bottom: 40px;
  font-weight: 300;
}

.concept-text {
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 2.2;
}

.concept-en {
  margin-top: 50px;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 2.1;
}

.concept-final {
  margin-top: 50px;
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 2.2;
}

/* --- Course Layout --- */
.course-section {
  max-width: 1000px;
}

.course-price {
  margin-top: 34px;
}

.course-price p {
  margin-bottom: 0;
}

.course-price span {
  opacity: 0.82;
}

.course-pairing-text {
  margin-top: 34px;
}

.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.course-grid-single {
  grid-template-columns: 1fr;
  justify-content: start;
}

.course-grid-single .course-column {
  max-width: 760px;
}

.course-column p:first-child {
  margin-top: 0;
}

.course-divider-single {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 68px auto 58px;
}

.course-divider-single img {
  width: 24px;
  height: auto;
  opacity: 0.82;
}

/* --- Schedule Text --- */
.schedule-text-wrap {
  max-width: 760px;
  margin: 0;
  padding: 0;
}

.schedule-text {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: rgba(234, 234, 234, 0.92);
  text-align: left;
}

.schedule-text p {
  margin: 0 0 24px;
}

.schedule-text p:last-child {
  margin-bottom: 0;
}

/* --- Section --- */
.section {
  padding: 140px 24px;
  max-width: 1000px;
  width: calc(100% - 48px);
  margin: 0 auto;

  background: rgba(0,0,0,0.55);

  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s ease;

  box-sizing: border-box;
  overflow: hidden;

  position: relative;
  z-index: 1;
}

.section.visible,
.section.show {
  opacity: 1;
  transform: translateY(0);
}

.section > * {
  max-width: 100%;
  box-sizing: border-box;
}

/* --- Button --- */
.button {
  display: inline-block;
  padding: 10px 38px;
  border: 1px solid rgba(234,234,234,0.75);
  text-decoration: none;
  color: #EAEAEA;
  letter-spacing: 2px;
  font-size: 14px;
  transition: 0.3s;
}

.button:hover {
  background-color: #EAEAEA;
  color: #111111;
}

.reservation-ja {
  margin-bottom: 12px;
}

.reservation-en {
  margin-top: 0;
}

/* --- Information --- */
.info-text {
  max-width: 760px;
  box-sizing: border-box;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 2.1;
}

.info-link {
  color: #EAEAEA;
  text-decoration: none;
  border-bottom: 1px solid rgba(234,234,234,0.5);
  transition: 0.3s ease;
}

.info-link:hover {
  opacity: 0.7;
}

/* --- Swiper Gallery --- */
.mukyo-swiper{
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  box-sizing: border-box;
}

.mukyo-swiper .swiper-wrapper {
  width: 100%;
  max-width: 100%;
  background: transparent;
}

.mukyo-swiper .swiper-slide {
  position: relative;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.mukyo-swiper .swiper-slide img{
  width: 100%;
  max-width: 100%;
  height: 520px;
  object-fit: contain;
  display: block;
  transform: none;
  transition: opacity 0.6s ease;
  box-sizing: border-box;
}

.mukyo-swiper .swiper-slide::after {
  display: none;
}

/* --- Swiper Arrows --- */
.swiper-button-prev,
.swiper-button-next {
  width: 32px;
  height: 32px;
  color: rgba(234, 234, 234, 0.75);
  transition: 0.3s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: 300;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: rgba(234, 234, 234, 1);
}

.swiper-pagination-bullet {
  background: #EAEAEA;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #EAEAEA;
  opacity: 1;
}

/* --- Google Map --- */
.map-wrap{
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 12px;
  box-sizing: border-box;
}

.map-wrap iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/* --- Floating Reservation Buttons Desktop --- */
.floating-reserve-ja,
.floating-reserve{
  position: fixed;
  right: 30px;

  padding: 12px 26px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;

  color: #EAEAEA;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 40px;
  z-index: 99990;

  transition: all 0.4s ease;

  pointer-events: auto;
}

.floating-reserve-ja{
  bottom: 96px;
}

.floating-reserve{
  bottom: 30px;
}

.floating-reserve-ja:hover,
.floating-reserve:hover{
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 60px 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.55);
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* --- English Menu Page --- */
.menu-page-section {
  min-height: 100vh;
  box-sizing: border-box;
}

.menu-page-logo {
  margin: 0 auto 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-page-logo img {
  width: 140px;
  height: auto;
  display: block;
}

.menu-block {
  margin: 0 auto 70px;
  max-width: 760px;
}

.menu-block h3 {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 34px;
}

.menu-block p {
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2.1;
}

.menu-price {
  margin-top: 34px;
}

.menu-price span {
  opacity: 0.85;
}

.menu-logo-divider {
  max-width: 760px;
  margin: 70px auto 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-logo-divider img {
  width: 26px;
  height: auto;
  opacity: 0.82;
}

.menu-back {
  max-width: 760px;
  margin: 80px auto 0;
}

/* --- PDF Menu Section --- */
.menu-pdf-section {
  max-width: 1000px;
  width: calc(100% - 48px);
  box-sizing: border-box;
  text-align: left;
  overflow: hidden;
}

.menu-button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 760px;
  margin: 0 auto;
}

.menu-button-item {
  scroll-margin-top: 90px;
  text-align: center;
}

.menu-button-item h3 {
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 300;
  margin: 0 0 24px;
}

.pdf-button {
  margin-top: 0;
  min-width: 220px;
  text-align: center;
}

/* --- English Page PDF Menu --- */
.menu-en-pdf-section {
  margin-top: 70px;
  margin-bottom: 70px;
}

.menu-en-pdf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 760px;
  margin: 0 auto;
}

.menu-en-pdf-item {
  text-align: center;
}

.menu-en-pdf-item h4 {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 300;
  margin: 0 0 24px;
}

.menu-en-pdf-item .pdf-button {
  margin-top: 0;
  min-width: 220px;
  text-align: center;
}

/* --- Profile Section --- */
.profile-section {
  margin-top: 0;
  margin-bottom: 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 760px;
  margin: 0 auto;
}

.profile-card {
  text-align: left;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.18);
}

.profile-text h3,
.profile-text h4 {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 300;
  margin: 0 0 16px;
}

.profile-role {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.8px;
  opacity: 0.9;
  margin-bottom: 22px;
  min-height: 3.8em;
}

.profile-text p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.6px;
  margin: 0 0 18px;
}

/* --- Tablet --- */
@media (max-width: 1024px){
  .section,
  .course-section,
  .menu-pdf-section {
    max-width: calc(100% - 48px);
  }

  .mukyo-swiper .swiper-slide img{
    height: 460px;
  }

  .course-grid {
    gap: 42px;
  }
}

/* --- Mobile --- */
@media (max-width: 768px){
  body{
    background-image: none;
    background-color: #111111;
    background-attachment: scroll;
    position: relative;
    padding-bottom: 92px;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url("../images/top.jpg");
    background-position: center center;
    background-size: auto 100vh;
    background-repeat: no-repeat;

    z-index: -2;
    pointer-events: none;

    transform: scale(1.02);
    transform-origin: center center;
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.18);
    z-index: -1;
    pointer-events: none;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding: 0 18px;
    box-sizing: border-box;
  }

  .menu-toggle {
    top: 24px;
    right: 22px;
    width: 34px;
    height: 34px;
    z-index: 99999;
  }

  .menu-toggle span {
    width: 34px;
    height: 2px;
    margin: 4px 0;
  }

  .hero-insta {
    top: 24px;
    right: 76px;
    width: 34px;
    height: 34px;
    z-index: 99999;
  }

  .hero-insta svg {
    width: 32px;
    height: 32px;
  }

  .menu-overlay {
    width: 82vw;
    min-width: auto;
    max-width: none;
    padding: 70px 34px;
    z-index: 100000;
  }

  .menu-close {
    top: 26px;
    right: 28px;
    font-size: 38px;
  }

  .side-menu {
    gap: 18px;
  }

  .side-menu a {
    font-size: 17px;
  }

  .hero-inner{
    width: 310px;
    height: 310px;
    max-width: 86vw;
    max-height: 86vw;
    padding: 30px;
    background: rgba(0,0,0,0.46);
  }

  .hero-logo {
    width: 98px;
    max-width: 54%;
    margin-bottom: 20px;
    transform: translateY(3px);
  }

  .hero-inner .button {
    padding: 8px 26px;
    font-size: 12px;
    letter-spacing: 1.4px;
    transform: translateY(3px);
  }

  .reservation-ja {
    margin-bottom: 9px;
  }

  .section,
  .course-section,
  .menu-pdf-section {
    padding: 86px 20px;
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .course-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  h2 {
    font-size: 23px;
    letter-spacing: 2px;
    margin-bottom: 32px;
  }

  h3 {
    font-size: 17px;
  }

  .concept-title,
  .concept-text,
  .concept-final {
    font-size: 14px;
    line-height: 2.05;
    letter-spacing: 0.6px;
  }

  .concept-en {
    margin-top: 40px;
    font-size: 13px;
    line-height: 1.95;
    letter-spacing: 0.6px;
  }

  .concept-final {
    margin-top: 40px;
  }

  .course-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .course-grid-single .course-column {
    max-width: 100%;
  }

  .course-divider-single img {
    width: 18px;
  }

  .course-divider-single {
    margin: 54px auto 44px;
  }

  .schedule-text-wrap {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .schedule-text {
    font-size: 13.5px;
    line-height: 2.05;
    letter-spacing: 0.05em;
    text-align: left;
  }

  .schedule-text p {
    margin: 0 0 20px;
  }

  .info-text {
    font-size: 13px;
    line-height: 1.95;
    letter-spacing: 0.5px;
  }

  .mukyo-swiper {
    border-radius: 10px;
  }

  .mukyo-swiper .swiper-slide img{
    width: 100%;
    height: 300px;
    object-fit: contain;
    transform: none;
  }

  .map-wrap{
    border-radius: 10px;
    padding-top: 78%;
  }

  /* --- Mobile Reservation Buttons Fixed Bottom --- */
  .floating-reserve-ja,
  .floating-reserve {
    position: fixed;
    bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: auto;
    min-width: 116px;
    height: 42px;

    padding: 0 18px;
    margin: 0;

    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1;

    color: #EAEAEA;
    background: rgba(0, 0, 0, 0.54);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 999px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    z-index: 99990;
    pointer-events: auto;
    box-sizing: border-box;
  }

  .floating-reserve-ja {
    left: 22px;
    right: auto;
  }

  .floating-reserve {
    right: 22px;
    left: auto;
  }

  .footer {
    padding: 50px 20px 120px;
    font-size: 12px;
  }

  .menu-page-logo {
    justify-content: center;
    margin-bottom: 58px;
  }

  .menu-page-logo img {
    width: 105px;
  }

  .menu-block {
    margin: 0 auto 58px;
    max-width: 100%;
  }

  .menu-block h3 {
    font-size: 20px;
    letter-spacing: 1.5px;
  }

  .menu-block p {
    font-size: 13px;
    line-height: 1.95;
    letter-spacing: 0.5px;
  }

  .menu-logo-divider {
    margin: 54px auto 54px;
  }

  .menu-logo-divider img {
    width: 20px;
  }

  .menu-back {
    margin-top: 68px;
  }

  .menu-button-grid,
  .menu-en-pdf-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    max-width: 100%;
    margin: 0 auto;
  }

  .menu-button-item,
  .menu-en-pdf-item {
    scroll-margin-top: 80px;
    text-align: center;
  }

  .menu-button-item h3,
  .menu-en-pdf-item h4 {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .pdf-button,
  .menu-en-pdf-item .pdf-button {
    min-width: 210px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 58px;
    max-width: 100%;
  }

  .profile-photo {
    margin-bottom: 22px;
  }

  .profile-text h3,
  .profile-text h4 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .profile-role {
    font-size: 13px;
    line-height: 1.85;
    margin-bottom: 18px;
    min-height: auto;
  }

  .profile-text p {
    font-size: 13px;
    line-height: 1.95;
  }
}

/* --- Small Mobile --- */
@media (max-width: 390px){
  body::before {
    background-size: auto 100vh;
    background-position: center center;
    transform: scale(1.01);
  }

  .hero-inner{
    width: 286px;
    height: 286px;
    max-width: 86vw;
    max-height: 86vw;
    padding: 28px;
  }

  .hero-logo {
    width: 88px;
    margin-bottom: 18px;
    transform: translateY(2px);
  }

  .hero-inner .button {
    padding: 7px 22px;
    font-size: 11px;
    transform: translateY(2px);
  }

  .reservation-ja {
    margin-bottom: 8px;
  }

  .menu-toggle {
    top: 22px;
    right: 20px;
    width: 32px;
    height: 32px;
  }

  .menu-toggle span {
    width: 32px;
    margin: 4px 0;
  }

  .hero-insta {
    top: 22px;
    right: 70px;
    width: 32px;
    height: 32px;
  }

  .hero-insta svg {
    width: 30px;
    height: 30px;
  }

  .menu-overlay {
    width: 88vw;
    padding: 66px 28px;
  }

  .side-menu a {
    font-size: 16px;
  }

  .section,
  .course-section,
  .menu-pdf-section {
    padding: 78px 18px;
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }

  .mukyo-swiper .swiper-slide img{
    height: 250px;
  }

  .course-divider-single img {
    width: 16px;
  }

  .schedule-text {
    font-size: 13px;
    line-height: 2;
  }

  .schedule-text p {
    margin: 0 0 18px;
  }

  .floating-reserve-ja,
  .floating-reserve {
    bottom: 16px;
    min-width: 108px;
    height: 40px;
    padding: 0 16px;
    font-size: 11px;
  }

  .floating-reserve-ja {
    left: 16px;
  }

  .floating-reserve {
    right: 16px;
  }

  .pdf-button,
  .menu-en-pdf-item .pdf-button {
    min-width: 190px;
  }
}

/* --- Mobile Reservation Buttons: PC Style Vertical Fix --- */
@media (max-width: 768px) {
  .floating-reserve-ja,
  .floating-reserve {
    position: fixed !important;
    left: auto !important;
    right: 16px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 112px !important;
    height: 42px !important;

    padding: 0 18px !important;
    margin: 0 !important;

    color: #EAEAEA !important;
    background: rgba(0, 0, 0, 0.52) !important;
    border: 1px solid rgba(255,255,255,0.30) !important;
    border-radius: 999px !important;

    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;

    font-size: 12px !important;
    letter-spacing: 1px !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;

    z-index: 99990 !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
  }

  .floating-reserve-ja {
    bottom: 72px !important;
  }

  .floating-reserve {
    bottom: 18px !important;
  }

  body {
    padding-bottom: 112px !important;
  }

  .footer {
    padding-bottom: 130px !important;
  }
}

/* --- Small Mobile Reservation Buttons: PC Style Vertical Fix --- */
@media (max-width: 390px) {
  .floating-reserve-ja,
  .floating-reserve {
    right: 14px !important;
    min-width: 104px !important;
    height: 40px !important;
    padding: 0 16px !important;
    font-size: 11px !important;
  }

  .floating-reserve-ja {
    bottom: 68px !important;
  }

  .floating-reserve {
    bottom: 18px !important;
  }
}

/* --- Hero Opening Copy --- */
.hero-copy {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 26px;

  text-align: left;
  color: rgba(234,234,234,0.94);

  font-size: 13.5px;
  line-height: 2;
  letter-spacing: 0.08em;

  text-shadow: 0 0 10px rgba(0,0,0,0.45);
}

.hero-copy p {
  margin: 0;
}

/* PC表示：ロゴ下の説明文を入れても美しく収まるように調整 */
@media (min-width: 769px) {
  .hero-inner-with-copy {
    width: 560px;
    height: auto;
    min-height: 560px;
    padding: 58px 62px;
  }

  .hero-inner-with-copy .hero-logo {
    width: 128px;
    margin-bottom: 30px;
  }

  .hero-inner-with-copy .hero-copy {
    margin-bottom: 30px;
  }
}

/* スマホ表示：ファーストビューで読めるように調整 */
@media (max-width: 768px) {
  .hero-inner-with-copy {
    width: 340px;
    height: auto;
    min-height: auto;
    max-width: 88vw;
    max-height: none;

    padding: 36px 30px 34px;
  }

  .hero-inner-with-copy .hero-logo {
    width: 78px;
    max-width: 46%;
    margin-bottom: 22px;
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 22px;

    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.05em;
  }

  .hero-inner-with-copy .button {
    padding: 8px 24px;
    font-size: 11px;
  }
}

/* 小さめスマホ用 */
@media (max-width: 390px) {
  .hero-inner-with-copy {
    width: 318px;
    max-width: 88vw;
    padding: 32px 26px 30px;
  }

  .hero-inner-with-copy .hero-logo {
    width: 72px;
    margin-bottom: 20px;
  }

  .hero-copy {
    font-size: 11.5px;
    line-height: 1.85;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
  }

  .hero-inner-with-copy .button {
    padding: 7px 22px;
    font-size: 11px;
  }
}


/* --- Hero Opening Copy: Under Reservation --- */
.hero-inner-with-copy {
  gap: 0;
}

.hero-inner-with-copy .reservation-ja {
  margin-bottom: 12px;
}

.hero-inner-with-copy .reservation-en {
  margin-bottom: 32px;
}

.hero-copy {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;

  text-align: center;
  color: rgba(234,234,234,0.94);

  font-size: 13px;
  line-height: 2.05;
  letter-spacing: 0.055em;

  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.hero-copy p {
  margin: 0;
}

/* PC表示 */
@media (min-width: 769px) {
  .hero-inner-with-copy {
    width: 600px;
    height: auto;
    min-height: 560px;
    padding: 56px 64px;
  }

  .hero-inner-with-copy .hero-logo {
    width: 128px;
    margin-bottom: 30px;
  }

  .hero-inner-with-copy .button {
    transform: none;
  }

  .hero-copy {
    max-width: 440px;
    font-size: 13px;
    line-height: 2.05;
    letter-spacing: 0.055em;
  }
}

/* スマホ表示 */
@media (max-width: 768px) {
  .hero-inner-with-copy {
    width: 340px;
    height: auto;
    min-height: auto;
    max-width: 88vw;
    max-height: none;

    padding: 34px 28px 32px;
  }

  .hero-inner-with-copy .hero-logo {
    width: 78px;
    max-width: 46%;
    margin-bottom: 22px;
  }

  .hero-inner-with-copy .reservation-ja {
    margin-bottom: 9px;
  }

  .hero-inner-with-copy .reservation-en {
    margin-bottom: 24px;
  }

  .hero-inner-with-copy .button {
    padding: 8px 24px;
    font-size: 11px;
    transform: none;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 11.5px;
    line-height: 1.9;
    letter-spacing: 0.035em;
    text-align: left;
  }
}

/* 小さめスマホ */
@media (max-width: 390px) {
  .hero-inner-with-copy {
    width: 318px;
    max-width: 88vw;
    padding: 30px 24px 28px;
  }

  .hero-inner-with-copy .hero-logo {
    width: 72px;
    margin-bottom: 20px;
  }

  .hero-inner-with-copy .reservation-en {
    margin-bottom: 22px;
  }

  .hero-copy {
    font-size: 11px;
    line-height: 1.85;
    letter-spacing: 0.03em;
  }

  .hero-inner-with-copy .button {
    padding: 7px 22px;
    font-size: 11px;
  }
}

/* --- Hero Copy Outside Black Box --- */
.hero-content {
  width: 100%;
  max-width: 760px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content .hero-inner {
  flex-shrink: 0;
}

.hero-copy-outside {
  width: calc(100% - 48px);
  max-width: 640px;

  margin: 34px auto 0;
  padding: 0;

  text-align: center;
  color: rgba(234,234,234,0.96);

  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.06em;

  text-shadow:
    0 0 10px rgba(0,0,0,0.75),
    0 2px 12px rgba(0,0,0,0.55);
}

.hero-copy-outside p {
  margin: 0;
}

/* PC表示：黒枠は元のバランスに戻し、文章だけ外に出す */
@media (min-width: 769px) {
  .hero-content {
    transform: translateY(22px);
  }

  .hero-content .hero-inner {
    width: 430px;
    height: 430px;
    max-width: 82vw;
    max-height: 82vw;
    padding: 48px;
  }

  .hero-content .hero-logo {
    width: 155px;
    max-width: 62%;
    margin-bottom: 28px;
  }

  .hero-content .button {
    transform: translateY(4px);
  }

  .hero-copy-outside {
    max-width: 680px;
    margin-top: 34px;

    font-size: 14px;
    line-height: 2.15;
    letter-spacing: 0.06em;
  }
}

/* スマホ表示：黒枠の外に文章を出しつつ、ファーストビューに収める */
@media (max-width: 768px) {
  .hero {
    align-items: center;
    justify-content: center;
    padding: 0 16px;
  }

  .hero-content {
    max-width: 100%;
    transform: translateY(18px);
  }

  .hero-content .hero-inner {
    width: 300px;
    height: 300px;
    max-width: 82vw;
    max-height: 82vw;
    padding: 30px;
  }

  .hero-content .hero-logo {
    width: 92px;
    max-width: 54%;
    margin-bottom: 20px;
  }

  .hero-content .button {
    padding: 8px 24px;
    font-size: 11px;
    letter-spacing: 1.3px;
    transform: translateY(3px);
  }

  .hero-copy-outside {
    width: calc(100% - 24px);
    max-width: 340px;

    margin-top: 26px;

    text-align: left;
    font-size: 11.5px;
    line-height: 1.9;
    letter-spacing: 0.035em;
  }
}

/* 小さめスマホ */
@media (max-width: 390px) {
  .hero-content {
    transform: translateY(16px);
  }

  .hero-content .hero-inner {
    width: 280px;
    height: 280px;
    max-width: 82vw;
    max-height: 82vw;
    padding: 28px;
  }

  .hero-content .hero-logo {
    width: 84px;
    margin-bottom: 18px;
  }

  .hero-content .button {
    padding: 7px 22px;
    font-size: 11px;
  }

  .hero-copy-outside {
    max-width: 318px;
    margin-top: 22px;

    font-size: 11px;
    line-height: 1.85;
    letter-spacing: 0.03em;
  }
}

/* --- Mobile Hero Box & Copy Alignment Fix --- */
@media (max-width: 768px) {
  .hero-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    transform: translateY(12px);
  }

  .hero-content .hero-inner {
    width: 100%;
    max-width: 340px;
    height: 300px;
    margin: 0 auto;
    padding: 30px;
    box-sizing: border-box;
  }

  .hero-copy-outside {
    width: 100%;
    max-width: 340px;
    margin: 24px auto 0;
    padding: 0;
    box-sizing: border-box;

    text-align: left;
    font-size: 11.5px;
    line-height: 1.9;
    letter-spacing: 0.035em;
  }

  .hero-copy-outside p {
    margin: 0;
  }
}

/* --- Small Mobile Hero Box & Copy Alignment Fix --- */
@media (max-width: 390px) {
  .hero-content {
    max-width: 318px;
    transform: translateY(10px);
  }

  .hero-content .hero-inner {
    width: 100%;
    max-width: 318px;
    height: 286px;
    padding: 28px;
  }

  .hero-copy-outside {
    width: 100%;
    max-width: 318px;
    margin-top: 22px;

    font-size: 11px;
    line-height: 1.85;
    letter-spacing: 0.03em;
  }
}

/* --- Hero Copy Font Size & Center Alignment Fix --- */
.hero-copy-outside {
  text-align: center;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.055em;
}

/* スマホ版も中央揃え＋少し大きく */
@media (max-width: 768px) {
  .hero-copy-outside {
    text-align: center !important;

    font-size: 12.5px !important;
    line-height: 1.95 !important;
    letter-spacing: 0.035em !important;

    width: 100% !important;
    max-width: 340px !important;
    margin: 24px auto 0 !important;
  }
}

/* 小さめスマホ */
@media (max-width: 390px) {
  .hero-copy-outside {
    text-align: center !important;

    font-size: 12px !important;
    line-height: 1.9 !important;
    letter-spacing: 0.03em !important;

    max-width: 318px !important;
    margin-top: 22px !important;
  }
}

/* --- SEO Hero Title for Mukyo Single Keyword --- */
.hero-seo-title {
  margin: 0 0 4px;

  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.22em;

  text-align: center;
  color: rgba(234,234,234,0.98);

  text-shadow:
    0 0 10px rgba(0,0,0,0.78),
    0 2px 12px rgba(0,0,0,0.55);
}

.hero-seo-subtitle {
  margin: 0 0 18px !important;

  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;

  text-align: center;
  color: rgba(234,234,234,0.92);
}

/* PC */
@media (min-width: 769px) {
  .hero-seo-title {
    font-size: 24px;
    letter-spacing: 0.24em;
  }

  .hero-seo-subtitle {
    font-size: 12.5px;
    margin-bottom: 18px !important;
  }

  .hero-copy-outside {
    max-width: 700px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-seo-title {
    font-size: 18px;
    letter-spacing: 0.18em;
    margin-bottom: 3px;
  }

  .hero-seo-subtitle {
    font-size: 10.5px;
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin-bottom: 14px !important;
  }

  .hero-copy-outside {
    text-align: center !important;
    font-size: 12.5px !important;
    line-height: 1.95 !important;
    letter-spacing: 0.035em !important;
  }
}

/* Small Mobile */
@media (max-width: 390px) {
  .hero-seo-title {
    font-size: 17px;
    letter-spacing: 0.16em;
  }

  .hero-seo-subtitle {
    font-size: 10px;
    margin-bottom: 12px !important;
  }

  .hero-copy-outside {
    font-size: 12px !important;
    line-height: 1.9 !important;
  }
}

/* --- Mobile Footer Width Alignment Fix --- */
@media (max-width: 768px) {
  .footer {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;

    margin: 0 auto !important;
    box-sizing: border-box !important;

    background: rgba(0,0,0,0.55) !important;
    border-top: 1px solid rgba(255,255,255,0.2) !important;

    padding: 50px 20px 130px !important;
  }
}

/* --- Small Mobile Footer Width Alignment Fix --- */
@media (max-width: 390px) {
  .footer {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;

    margin: 0 auto !important;
    padding: 46px 18px 125px !important;
  }
}